
        @import url('https://fonts.googleapis.com/css2?family=Comic+Neue:wght@300;400;600;700;800&display=swap');
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Comic Neue', cursive;
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
            color: #1e293b;
            overflow-x: hidden;
            position: relative;
        }

        /* Advanced Tech Grid Background */
        .tech-grid {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(215, 172, 56, 0.08) 1px, transparent 1px),
                linear-gradient(90deg, rgba(215, 172, 56, 0.08) 1px, transparent 1px),
                linear-gradient(rgba(10, 31, 68, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(10, 31, 68, 0.03) 1px, transparent 1px);
            background-size: 60px 60px, 60px 60px, 20px 20px, 20px 20px;
            z-index: -3;
            animation: gridMove 25s linear infinite;
        }

        @keyframes gridMove {
            0% { transform: translate(0, 0); }
            100% { transform: translate(60px, 60px); }
        }

        /* Enhanced Circuit Pattern */
        .circuit-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -2;
            opacity: 0.08;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cdefs%3E%3ClinearGradient id='grad1' x1='0%25' y1='0%25' x2='100%25' y2='100%25'%3E%3Cstop offset='0%25' style='stop-color:%23d7ac38;stop-opacity:1' /%3E%3Cstop offset='100%25' style='stop-color:%230a1f44;stop-opacity:1' /%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath d='M40 40h120v120H40z' fill='none' stroke='url(%23grad1)' stroke-width='1.5'/%3E%3Ccircle cx='40' cy='40' r='4' fill='%23d7ac38'/%3E%3Ccircle cx='160' cy='40' r='4' fill='%23d7ac38'/%3E%3Ccircle cx='160' cy='160' r='4' fill='%23d7ac38'/%3E%3Ccircle cx='40' cy='160' r='4' fill='%23d7ac38'/%3E%3Cpath d='M100 40v120M40 100h120' stroke='url(%23grad1)' stroke-width='1'/%3E%3Ccircle cx='100' cy='100' r='6' fill='%23d7ac38' opacity='0.7'/%3E%3Cpath d='M70 70h60v60H70z' fill='none' stroke='%230a1f44' stroke-width='0.8' opacity='0.5'/%3E%3C/svg%3E");
            background-size: 300px 300px;
            animation: circuitPulse 6s ease-in-out infinite;
        }

        @keyframes circuitPulse {
            0%, 100% { opacity: 0.06; transform: scale(1); }
            50% { opacity: 0.12; transform: scale(1.02); }
        }

        /* Header Styles */
        .header {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(25px);
            border-bottom: 1px solid rgba(215, 172, 56, 0.15);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 32px rgba(15, 23, 42, 0.08);
        }

        .header.scrolled {
            background: rgba(255, 255, 255, 0.95);
            box-shadow: 0 8px 40px rgba(15, 23, 42, 0.12);
            border-bottom: 1px solid rgba(215, 172, 56, 0.25);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 5%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
            animation: logoFloat 3s ease-in-out infinite;
        }

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

        .logo-icon {
            width: 58px;
            height: 58px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            box-shadow: 
                0 8px 32px rgba(215, 172, 56, 0.25),
                inset 0 1px 0 rgba(255, 255, 255, 0.3),
                inset 0 -1px 0 rgba(0, 0, 0, 0.1);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .logo-icon:hover {
            transform: rotateY(180deg) scale(1.08);
            box-shadow: 
                0 16px 48px rgba(215, 172, 56, 0.35),
                inset 0 2px 0 rgba(255, 255, 255, 0.4),
                inset 0 -2px 0 rgba(0, 0, 0, 0.15);
        }

       
        
        .logo-icon img{
            width: 58px;
            height: 58px;
        }

        .logo-text {
            font-size: 26px;
            font-weight: 800;
            background: linear-gradient(135deg, #0a1f44 0%, #1e3a5f 50%, #d7ac38 100%);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: -0.8px;
            animation: logoTextShine 3s ease-in-out infinite;
        }

        @keyframes logoTextShine {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 30px;
            border-radius: 10px;
            margin: 0;
            align-items: center;
        }

        .nav-menu li {
            position: relative;
            display: flex; 
            align-items: center;
        }

        .nav-menu a {
            text-decoration: none;
            color: #1e293b;
            font-weight: 600;
            padding: 12px 24px;
            border-radius: 12px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            font-size: 15px;
        }

        .nav-menu a::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background: linear-gradient(135deg, #d7ac38 0%, #d5ac73 100%);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: -1;
        }

        .nav-menu a:hover::before {
            width: 100%;
        }

        .nav-menu a:hover {
            color: #ffffff;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(215, 172, 56, 0.3);
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: linear-gradient(45deg, #0a1f44, #d7ac38);
            border-radius: 2px;
            transition: all 0.3s ease;
        }

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

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

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

        /* Section Badge */
        .section-badge {
            display: inline-block;
            background: linear-gradient(135deg, rgba(215, 172, 56, 0.12), rgba(213, 172, 115, 0.08));
            border: 1px solid rgba(215, 172, 56, 0.25);
            padding: 10px 24px;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 700;
            color: #d7ac38;
            margin-bottom: 24px;
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 20px rgba(215, 172, 56, 0.15);
            animation: badgePulse 3s ease-in-out infinite;
        }

        .section-badge::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(215, 172, 56, 0.2), transparent);
            animation: badgeShine 2s ease-in-out infinite;
        }

        @keyframes badgeShine {
            0% { left: -100%; }
            50%, 100% { left: 100%; }
        }

        @keyframes badgePulse {
            0%, 100% {
                box-shadow: 0 4px 20px rgba(215, 172, 56, 0.15);
                border-color: rgba(215, 172, 56, 0.25);
            }
            50% {
                box-shadow: 0 6px 30px rgba(215, 172, 56, 0.25);
                border-color: rgba(215, 172, 56, 0.35);
            }
        }

        /* Hero Section */
        .hero {
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            padding: 120px 0 20px 0;
        }

        .tech-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .binary-code {
            position: absolute;
            font-family: 'Comic Neue', cursive;
            font-size: 12px;
            color: rgba(215, 172, 56, 0.3);
            animation: binaryFlow 10s linear infinite;
        }

        .binary-code:nth-child(1) {
            top: 10%;
            left: 5%;
            animation-delay: 0s;
        }

        .binary-code:nth-child(2) {
            top: 30%;
            right: 10%;
            animation-delay: 2s;
        }

        .binary-code:nth-child(3) {
            bottom: 20%;
            left: 15%;
            animation-delay: 4s;
        }

        .binary-code:nth-child(4) {
            top: 60%;
            right: 20%;
            animation-delay: 6s;
        }

        @keyframes binaryFlow {
            0% {
                opacity: 0;
                transform: translateY(0);
            }
            50% {
                opacity: 1;
                transform: translateY(-20px);
            }
            100% {
                opacity: 0;
                transform: translateY(-40px);
            }
        }

        .code-blocks {
            position: absolute;
            width: 200px;
            height: 100px;
            border: 2px solid rgba(215, 172, 56, 0.2);
            border-radius: 20px;
            background: rgba(215, 172, 56, 0.05);
        }

        .code-blocks:nth-child(5) {
            top: 15%;
            right: 5%;
            animation: codeFloat 6s ease-in-out infinite;
        }

        .code-blocks:nth-child(6) {
            bottom: 25%;
            right: 8%;
            animation: codeFloat 6s ease-in-out infinite 2s;
        }

        .code-blocks:nth-child(7) {
            top: 40%;
            left: 5%;
            animation: codeFloat 6s ease-in-out infinite 4s;
        }

        @keyframes codeFloat {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
                opacity: 0.3;
            }
            50% {
                transform: translateY(-15px) rotate(2deg);
                opacity: 0.6;
            }
        }

        .hero-content {
            text-align: center;
            z-index: 2;
            max-width: 900px;
            padding: 0 20px;
            animation: heroEntry 1.5s ease-out;
        }

        @keyframes heroEntry {
            0% {
                opacity: 0;
                transform: translateY(50px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-title {
            font-size: 4.2rem;
            font-weight: 900;
            margin-bottom: 24px;
            color: #0f172a;
            line-height: 1.1;
            position: relative;
            letter-spacing: -2px;
        }

        .hero-title .highlight {
            background: linear-gradient(135deg, #d7ac38 0%, #d5ac73 50%, #c9a366 100%);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            position: relative;
            animation: highlightShine 4s ease-in-out infinite;
        }

        @keyframes highlightShine {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .hero-title .highlight::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #d7ac38, #d5ac73, #d7ac38);
            background-size: 200% 100%;
            border-radius: 2px;
            animation: underlineFlow 3s ease-in-out infinite;
        }

        @keyframes underlineFlow {
            0%, 100% { background-position: 0% 50%; opacity: 0.8; }
            50% { background-position: 100% 50%; opacity: 1; }
        }

        .hero-subtitle {
            font-size: 1.4rem;
            margin-bottom: 30px;
            color: #666666;
            font-weight: 500;
            animation: fadeInUp 1.5s ease-out 0.5s both;
        }

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

        .tech-stats {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin: 40px 0;
            animation: fadeInUp 1.5s ease-out 1s both;
        }

        .stat-item {
            text-align: center;
            padding: 24px 20px;
            border-radius: 16px;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(248, 250, 252, 0.9) 100%);
            border: 1px solid rgba(215, 172, 56, 0.15);
            min-width: 140px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(20px);
            box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
        }

        .stat-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, #d7ac38, #d5ac73);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .stat-item:hover::before {
            opacity: 1;
        }

        .stat-item:hover {
            transform: translateY(-8px);
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 1) 100%);
            box-shadow: 0 16px 40px rgba(215, 172, 56, 0.2);
            border-color: rgba(215, 172, 56, 0.25);
        }

        .stat-number {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(135deg, #d7ac38 0%, #d5ac73 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: block;
            margin-bottom: 4px;
        }

        .stat-label {
            font-size: 13px;
            color: #64748b;
            font-weight: 600;
            margin-top: 6px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 40px;
            animation: fadeInUp 1.5s ease-out 1.5s both;
        }

        .btn {
            padding: 16px 35px;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-family: 'Comic Neue', cursive;
        }

        .btn-primary {
            background: linear-gradient(135deg, #0a1f44 0%, #1e3a5f 50%, #2d4a6b 100%);
            color: #ffffff;
            box-shadow: 0 8px 32px rgba(10, 31, 68, 0.3);
            position: relative;
            overflow: hidden;
        }

        .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.6s ease;
        }

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

        .btn-primary:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 48px rgba(10, 31, 68, 0.4);
            background: linear-gradient(135deg, #1a2f54 0%, #2d4a6b 50%, #3f5a7a 100%);
        }

        .btn-secondary {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 252, 0.95));
            color: #d7ac38;
            border: 2px solid #d7ac38;
            backdrop-filter: blur(20px);
            box-shadow: 0 8px 32px rgba(215, 172, 56, 0.15);
        }

        .btn-secondary:hover {
            background: linear-gradient(135deg, #d7ac38 0%, #d5ac73 100%);
            color: #ffffff;
            transform: translateY(-4px);
            box-shadow: 0 16px 48px rgba(215, 172, 56, 0.35);
            border-color: #d7ac38;
        }

        .btn-icon {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Services Section */
        .services {
            padding: 120px 5% 80px;
            background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
            position: relative;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 3.5rem;
            font-weight: 900;
            color: #0f172a;
            margin-bottom: 20px;
            position: relative;
        }

        .section-title h2 .highlight {
            background: linear-gradient(135deg, #d7ac38 0%, #d5ac73 50%, #c9a366 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .section-title p {
            font-size: 1.3rem;
            color: #64748b;
            max-width: 600px;
            margin: 0 auto;
            font-weight: 500;
        }

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

        .service-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.95) 100%);
            border: 1px solid rgba(215, 172, 56, 0.15);
            border-radius: 24px;
            padding: 40px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(20px);
            box-shadow: 0 8px 40px rgba(15, 23, 42, 0.08);
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #d7ac38, #d5ac73);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .service-card:hover::before {
            opacity: 1;
        }

        .service-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 24px 60px rgba(215, 172, 56, 0.2);
            border-color: rgba(215, 172, 56, 0.25);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #d7ac38 0%, #d5ac73 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            margin-bottom: 30px;
            position: relative;
            box-shadow: 0 8px 32px rgba(215, 172, 56, 0.25);
        }

        .service-card h3 {
            font-size: 1.8rem;
            font-weight: 800;
            color: #0f172a;
            margin-bottom: 16px;
        }

        .service-card p {
            color: #64748b;
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 20px;
            font-weight: 500;
        }

        .service-features {
            list-style: none;
            margin-bottom: 30px;
        }

        .service-features li {
            padding: 8px 0;
            color: #475569;
            position: relative;
            padding-left: 25px;
            font-weight: 600;
        }

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

        .service-price {
            font-size: 1.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, #d7ac38 0%, #d5ac73 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* About Section */
       
       .about {
    padding: 120px 5% 80px;
    background: linear-gradient(135deg, #0a1f44 0%, #1e3a5f 50%, #2d4a6b 100%);
    position: relative;
    color: #ffffff;
}

.about-content {
    max-width: 1400px;
    margin: 0 auto;
}

.about-text {
    text-align: center;
    margin-bottom: 60px;
}

.about-text .section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(215, 172, 56, 0.15), rgba(213, 172, 115, 0.1));
    border: 1px solid rgba(215, 172, 56, 0.3);
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 700;
    color: #d7ac38;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(215, 172, 56, 0.15);
}

.about-text h2 {
    font-size: 3.2rem;
    font-weight: 900;
    margin-bottom: 30px;
    color: #ffffff;
    line-height: 1.2;
}

.about-text h2 .highlight {
    background: linear-gradient(135deg, #d7ac38 0%, #d5ac73 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-text p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    max-width: 900px;
    margin: 0 auto;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-img {
    width: 90%;
    max-width: 1200px;
    border-radius: 24px;
    box-shadow: 0 16px 60px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(215, 172, 56, 0.3);
    display: block;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-img:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 80px rgba(215, 172, 56, 0.2);
}

        /* Portfolio Section */
        .portfolio {
            padding: 120px 5% 80px;
            background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
            position: relative;
        }

        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 40px;
            margin-top: 80px;
        }

        .portfolio-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 1) 100%);
            border: 1px solid rgba(215, 172, 56, 0.15);
            border-radius: 24px;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 8px 40px rgba(15, 23, 42, 0.08);
            position: relative;
        }

        .portfolio-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #d7ac38, #d5ac73);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .portfolio-card:hover::before {
            opacity: 1;
        }

        .portfolio-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 24px 60px rgba(215, 172, 56, 0.2);
            border-color: rgba(215, 172, 56, 0.25);
        }

        .portfolio-image {
            height: 250px;
            background: linear-gradient(135deg, rgba(215, 172, 56, 0.1) 0%, rgba(10, 31, 68, 0.05) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            color: rgba(215, 172, 56, 0.6);
            position: relative;
            overflow: hidden;
        }

        .portfolio-content {
            padding: 30px;
        }

        .portfolio-card h3 {
            font-size: 1.6rem;
            font-weight: 800;
            color: #0f172a;
            margin-bottom: 12px;
        }

        .portfolio-card p {
            color: #64748b;
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 20px;
            font-weight: 500;
        }

        .portfolio-tech {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 20px;
        }

        .tech-tag {
            background: linear-gradient(135deg, rgba(215, 172, 56, 0.1), rgba(213, 172, 115, 0.08));
            border: 1px solid rgba(215, 172, 56, 0.2);
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            color: #d7ac38;
        }

        .portfolio-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #d7ac38;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .portfolio-link:hover {
            color: #0a1f44;
            transform: translateX(5px);
        }

        /* Team Section */
        .team {
            padding: 120px 5% 80px;
            background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
            position: relative;
        }

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

        .team-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.95) 100%);
            border: 1px solid rgba(215, 172, 56, 0.15);
            border-radius: 24px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            backdrop-filter: blur(20px);
            box-shadow: 0 8px 40px rgba(15, 23, 42, 0.08);
        }

        .team-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #d7ac38, #d5ac73);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .team-card:hover::before {
            opacity: 1;
        }

        .team-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 24px 60px rgba(215, 172, 56, 0.2);
            border-color: rgba(215, 172, 56, 0.25);
        }

        .team-avatar {
            width: 120px;
            height: 120px;
            background: linear-gradient(135deg, #d7ac38 0%, #d5ac73 100%);
            border-radius: 50%;
            margin: 0 auto 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: #ffffff;
            box-shadow: 0 12px 40px rgba(215, 172, 56, 0.3);
        }

        .team-card h3 {
            font-size: 1.5rem;
            font-weight: 800;
            color: #0f172a;
            margin-bottom: 8px;
        }

        .team-role {
            color: #d7ac38;
            font-weight: 600;
            font-size: 1.1rem;
            margin-bottom: 15px;
        }

        .team-card p {
            color: #64748b;
            font-size: 1rem;
            line-height: 1.6;
            font-weight: 500;
        }

        /* Contact Section */
        .contact {
            padding: 120px 5% 80px;
            background: linear-gradient(135deg, #0a1f44 0%, #1e3a5f 50%, #2d4a6b 100%);
            position: relative;
            color: #ffffff;
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .contact-info h2 {
            font-size: 3.2rem;
            font-weight: 900;
            margin-bottom: 30px;
            color: #ffffff;
        }

        .contact-info h2 .highlight {
            background: linear-gradient(135deg, #d7ac38 0%, #d5ac73 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .contact-info p {
            font-size: 1.2rem;
            line-height: 1.7;
            margin-bottom: 40px;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 500;
        }

        .contact-details {
            list-style: none;
        }

        .contact-details li {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 25px;
            font-size: 1.1rem;
            font-weight: 600;
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #d7ac38 0%, #d5ac73 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            box-shadow: 0 8px 25px rgba(215, 172, 56, 0.3);
        }

        .contact-form {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(215, 172, 56, 0.2);
            border-radius: 24px;
            padding: 40px;
            backdrop-filter: blur(20px);
        }

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

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.9);
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px 20px;
            border: 1px solid rgba(215, 172, 56, 0.3);
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.1);
            color: #ffffff;
            font-family: 'Comic Neue', cursive;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #d7ac38;
            background: rgba(255, 255, 255, 0.15);
            box-shadow: 0 0 20px rgba(215, 172, 56, 0.2);
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

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

        .submit-btn {
            width: 100%;
            background: linear-gradient(135deg, #d7ac38 0%, #d5ac73 100%);
            color: #0a1f44;
            border: none;
            padding: 18px;
            border-radius: 12px;
            font-family: 'Comic Neue', cursive;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.4s ease;
            box-shadow: 0 8px 32px rgba(215, 172, 56, 0.3);
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 16px 48px rgba(215, 172, 56, 0.4);
            background: linear-gradient(135deg, #e8bd49 0%, #e6bd84 100%);
        }

        /* Footer */
        .footer {
            background: linear-gradient(135deg, #0a1f44 0%, #1e3a5f 100%);
            color: #ffffff;
            padding: 80px 5% 30px;
            position: relative;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 60px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .footer-brand {
            max-width: 400px;
        }

        .footer-brand .logo {
            margin-bottom: 25px;
        }

        .footer-brand p {
            font-size: 1.1rem;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 30px;
            font-weight: 500;
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-link {
            width: 50px;
            height: 50px;
            background: rgba(215, 172, 56, 0.1);
            border: 1px solid rgba(215, 172, 56, 0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #d7ac38;
            text-decoration: none;
            font-size: 1.3rem;
            transition: all 0.4s ease;
        }

        .social-link:hover {
            background: #d7ac38;
            color: #0a1f44;
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(215, 172, 56, 0.4);
        }

        .footer-section h3 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 25px;
            color: #d7ac38;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section li {
            margin-bottom: 12px;
        }

        .footer-section a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
        }

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

        .footer-bottom {
            border-top: 1px solid rgba(215, 172, 56, 0.2);
            margin-top: 60px;
            padding-top: 30px;
            text-align: center;
        }

        .footer-bottom p {
            color: rgba(255, 255, 255, 0.7);
            font-weight: 500;
        }
        
         .footer-bottom p a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
        }



        /* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .portfolio-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }

    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
        letter-spacing: -1.5px;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .tech-stats {
        gap: 30px;
    }

    .stat-item {
        min-width: 120px;
        padding: 20px 16px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .section-title h2 {
        font-size: 3rem;
    }

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

    .contact-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    /* Header */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 75px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        width: 100%;
        text-align: center;
        transition: all 0.4s ease;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        padding: 30px 0;
        gap: 0;
        backdrop-filter: blur(20px);
        max-height: calc(100vh - 75px);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 15px 20px;
        width: 100%;
    }

    .hamburger {
        display: flex;
    }

    .logo-text {
        font-size: 20px;
    }

    .logo-icon {
        width: 50px;
        height: 50px;
    }

    .logo-icon img {
        width: 50px;
        height: 50px;
    }

    /* Hero */
    .hero {
        padding: 100px 0 40px 0;
    }

    .hero-title {
        font-size: 2.5rem;
        letter-spacing: -1px;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }

    .tech-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .stat-item {
        min-width: 110px;
        padding: 18px 14px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 12px;
    }

    .cta-buttons {
        flex-direction: row;
        gap: 15px;
        margin-top: 30px;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .code-blocks {
        display: none;
    }

    /* Sections */
    .services,
    .portfolio,
    .team {
        padding: 80px 5% 60px;
    }

    .section-badge {
        font-size: 12px;
        padding: 8px 20px;
    }

    .section-title {
        margin-bottom: 50px;
    }

    .section-title h2 {
        font-size: 2.2rem;
        margin-bottom: 16px;
    }

    .section-title p {
        font-size: 1.1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 60px;
    }

    .service-card {
        padding: 30px;
    }

    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
        margin-bottom: 25px;
    }

    .service-card h3 {
        font-size: 1.5rem;
    }

    .service-card p {
        font-size: 1rem;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 60px;
    }

    .portfolio-image {
        height: 220px;
        font-size: 3rem;
    }

    .portfolio-content {
        padding: 25px;
    }

    .portfolio-card h3 {
        font-size: 1.4rem;
    }

    .portfolio-card p {
        font-size: 1rem;
    }

    /* About */
    .about {
        padding: 80px 5% 60px;
    }

    .about-text .section-badge {
        font-size: 13px;
        padding: 10px 24px;
        margin-bottom: 24px;
    }

    .about-text h2 {
        font-size: 2.2rem;
        margin-bottom: 24px;
    }

    .about-text p {
        font-size: 1.05rem;
    }

    .about-text {
        margin-bottom: 40px;
    }

    .about-img {
        width: 95%;
    }

    /* Team */
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 35px;
        margin-top: 60px;
    }

    .team-card {
        padding: 30px 25px;
    }

    .team-avatar {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .team-card h3 {
        font-size: 1.3rem;
    }

    .team-role {
        font-size: 1rem;
    }

    /* Contact */
    .contact {
        padding: 80px 5% 60px;
    }

    .contact-info h2 {
        font-size: 2.5rem;
        margin-bottom: 25px;
    }

    .contact-info p {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    .contact-form {
        padding: 30px;
    }

    /* Footer */
    .footer {
        padding: 60px 5% 25px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-bottom {
        margin-top: 50px;
        padding-top: 25px;
    }
}

@media (max-width: 480px) {
    /* Header */
    .nav-container {
        padding: 12px 4%;
    }

    .logo-text {
        font-size: 18px;
    }

    .logo-icon {
        width: 45px;
        height: 45px;
    }

    .logo-icon img {
        width: 45px;
        height: 45px;
    }

    /* Hero */
    .hero {
        padding: 90px 0 30px 0;
    }

    .hero-content {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
        letter-spacing: -0.8px;
        margin-bottom: 18px;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .tech-stats {
        gap: 15px;
    }

    .stat-item {
        min-width: 100px;
        padding: 16px 12px;
        border-radius: 12px;
    }

    .stat-number {
        font-size: 1.6rem;
        margin-bottom: 3px;
    }

    .stat-label {
        font-size: 11px;
    }

    .cta-buttons {
        margin-top: 25px;
        gap: 12px;
    }

    .btn {
        padding: 14px 28px;
        font-size: 15px;
        border-radius: 10px;
    }

    .binary-code {
        font-size: 10px;
    }

    /* Sections */
    .services,
    .portfolio,
    .team {
        padding: 60px 4% 50px;
    }

    .section-badge {
        font-size: 11px;
        padding: 7px 18px;
        margin-bottom: 20px;
    }

    .section-title {
        margin-bottom: 40px;
    }

    .section-title h2 {
        font-size: 1.8rem;
        margin-bottom: 14px;
    }

    .section-title p {
        font-size: 1rem;
    }

    .services-grid {
        gap: 20px;
        margin-top: 50px;
    }

    .service-card {
        padding: 25px;
        border-radius: 20px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
        border-radius: 16px;
        margin-bottom: 20px;
    }

    .service-card h3 {
        font-size: 1.3rem;
        margin-bottom: 14px;
    }

    .service-card p {
        font-size: 0.95rem;
        margin-bottom: 18px;
    }

    .service-features {
        margin-bottom: 25px;
    }

    .service-features li {
        padding: 6px 0;
        padding-left: 22px;
        font-size: 0.9rem;
    }

    .service-price {
        font-size: 1.3rem;
    }

    .portfolio-grid {
        gap: 25px;
        margin-top: 50px;
    }

    .portfolio-card {
        border-radius: 20px;
    }

    .portfolio-image {
        height: 180px;
        font-size: 2.5rem;
    }

    .portfolio-content {
        padding: 22px;
    }

    .portfolio-card h3 {
        font-size: 1.25rem;
        margin-bottom: 10px;
    }

    .portfolio-card p {
        font-size: 0.95rem;
        margin-bottom: 16px;
    }

    .tech-tag {
        font-size: 11px;
        padding: 5px 14px;
    }

    /* About */
    .about {
        padding: 60px 4% 50px;
    }

    .about-text .section-badge {
        font-size: 12px;
        padding: 9px 20px;
        margin-bottom: 20px;
    }

    .about-text h2 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .about-text p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .about-text {
        margin-bottom: 35px;
    }

    .about-img {
        width: 100%;
        border-radius: 16px;
    }

    /* Team */
    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 50px;
    }

    .team-card {
        padding: 28px 22px;
        border-radius: 20px;
    }

    .team-avatar {
        width: 90px;
        height: 90px;
        font-size: 2.2rem;
        margin-bottom: 18px;
    }

    .team-card h3 {
        font-size: 1.2rem;
        margin-bottom: 6px;
    }

    .team-role {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }

    .team-card p {
        font-size: 0.9rem;
    }

    /* Contact */
    .contact {
        padding: 60px 4% 50px;
    }

    .contact-info h2 {
        font-size: 2rem;
        margin-bottom: 22px;
    }

    .contact-info p {
        font-size: 1rem;
        margin-bottom: 28px;
    }

    .contact-details li {
        margin-bottom: 20px;
        font-size: 1rem;
    }

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

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

    .form-group {
        margin-bottom: 20px;
    }

    .form-group label {
        font-size: 0.95rem;
        margin-bottom: 6px;
    }

    .form-group input,
    .form-group textarea {
        padding: 13px 16px;
        font-size: 0.95rem;
        border-radius: 10px;
    }

    .form-group textarea {
        min-height: 100px;
    }

    .submit-btn {
        padding: 16px;
        font-size: 1rem;
        border-radius: 10px;
    }

    /* Footer */
    .footer {
        padding: 50px 4% 20px;
    }

    .footer-brand p {
        font-size: 1rem;
        margin-bottom: 25px;
    }

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

    .footer-section h3 {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }

    .footer-section li {
        margin-bottom: 10px;
    }

    .footer-section a {
        font-size: 0.95rem;
    }

    .footer-bottom {
        margin-top: 40px;
        padding-top: 20px;
    }

    .footer-bottom p {
        font-size: 0.9rem;
    }
}

@media (max-width: 320px) {
    /* Header */
    .nav-container {
        padding: 10px 4%;
    }

    .logo-text {
        font-size: 16px;
    }

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

    .logo-icon img {
        width: 40px;
        height: 40px;
    }

    /* Hero */
    .hero {
        padding: 80px 0 25px 0;
    }

    .hero-title {
        font-size: 1.6rem;
        letter-spacing: -0.5px;
        margin-bottom: 16px;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 18px;
    }

    .tech-stats {
        flex-direction: column;
        gap: 12px;
    }

    .stat-item {
        width: 100%;
        min-width: auto;
        padding: 14px 10px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 10px;
    }

    .cta-buttons {
        margin-top: 20px;
        gap: 10px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    /* Sections */
    .services,
    .portfolio,
    .team {
        padding: 50px 4% 40px;
    }

    .section-badge {
        font-size: 10px;
        padding: 6px 16px;
        margin-bottom: 18px;
    }

    .section-title {
        margin-bottom: 35px;
    }

    .section-title h2 {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }

    .section-title p {
        font-size: 0.9rem;
    }

    .services-grid {
        gap: 18px;
        margin-top: 40px;
    }

    .service-card {
        padding: 22px;
    }

    .service-icon {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
        border-radius: 14px;
        margin-bottom: 18px;
    }

    .service-card h3 {
        font-size: 1.15rem;
        margin-bottom: 12px;
    }

    .service-card p {
        font-size: 0.85rem;
        margin-bottom: 16px;
    }

    .service-features li {
        padding: 5px 0;
        padding-left: 20px;
        font-size: 0.85rem;
    }

    .service-price {
        font-size: 1.15rem;
    }

    .portfolio-grid {
        gap: 20px;
        margin-top: 40px;
    }

    .portfolio-image {
        height: 160px;
        font-size: 2rem;
    }

    .portfolio-content {
        padding: 20px;
    }

    .portfolio-card h3 {
        font-size: 1.1rem;
    }

    .portfolio-card p {
        font-size: 0.85rem;
    }

    .tech-tag {
        font-size: 10px;
        padding: 4px 12px;
    }

    /* About */
    .about {
        padding: 50px 4% 40px;
    }

    .about-text .section-badge {
        font-size: 11px;
        padding: 8px 18px;
    }

    .about-text h2 {
        font-size: 1.5rem;
    }

    .about-text p {
        font-size: 0.85rem;
    }

    .about-text {
        margin-bottom: 30px;
    }

    /* Team */
    .team-grid {
        gap: 25px;
        margin-top: 40px;
    }

    .team-card {
        padding: 25px 20px;
    }

    .team-avatar {
        width: 80px;
        height: 80px;
        font-size: 2rem;
        margin-bottom: 16px;
    }

    .team-card h3 {
        font-size: 1.1rem;
    }

    .team-role {
        font-size: 0.85rem;
    }

    .team-card p {
        font-size: 0.85rem;
    }

    /* Contact */
    .contact {
        padding: 50px 4% 40px;
    }

    .contact-info h2 {
        font-size: 1.7rem;
        margin-bottom: 20px;
    }

    .contact-info p {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }

    .contact-details li {
        margin-bottom: 18px;
        font-size: 0.9rem;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .contact-form {
        padding: 22px;
    }

    .form-group {
        margin-bottom: 18px;
    }

    .form-group label {
        font-size: 0.9rem;
    }

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

    .form-group textarea {
        min-height: 90px;
    }

    .submit-btn {
        padding: 14px;
        font-size: 0.95rem;
    }

    /* Footer */
    .footer {
        padding: 40px 4% 18px;
    }

    .footer-brand p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

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

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

    .footer-section li {
        margin-bottom: 8px;
    }

    .footer-section a {
        font-size: 0.85rem;
    }

    .footer-bottom {
        margin-top: 35px;
        padding-top: 18px;
    }

    .footer-bottom p {
        font-size: 0.85rem;
    }
}












        /* Website Page */


        .web-dev-page {
            font-family: 'Comic Neue', cursive;
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
            color: #1e293b;
            overflow-x: hidden;
            position: relative;
            min-height: 100vh;
        }

        /* Enhanced Tech Grid Background */
        .web-tech-grid {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(215, 172, 56, 0.06) 1px, transparent 1px),
                linear-gradient(90deg, rgba(215, 172, 56, 0.06) 1px, transparent 1px),
                linear-gradient(rgba(10, 31, 68, 0.02) 1px, transparent 1px),
                linear-gradient(90deg, rgba(10, 31, 68, 0.02) 1px, transparent 1px);
            background-size: 80px 80px, 80px 80px, 25px 25px, 25px 25px;
            z-index: -3;
            animation: webGridMove 20s linear infinite;
        }

        @keyframes webGridMove {
            0% { transform: translate(0, 0); }
            100% { transform: translate(80px, 80px); }
        }

        /* Code Pattern Background */
        .web-circuit-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -2;
            opacity: 0.04;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 300'%3E%3Cdefs%3E%3ClinearGradient id='webGrad' x1='0%25' y1='0%25' x2='100%25' y2='100%25'%3E%3Cstop offset='0%25' style='stop-color:%23d7ac38;stop-opacity:1' /%3E%3Cstop offset='100%25' style='stop-color:%230a1f44;stop-opacity:1' /%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath d='M50 50h200v200H50z' fill='none' stroke='url(%23webGrad)' stroke-width='2'/%3E%3Ccircle cx='50' cy='50' r='6' fill='%23d7ac38'/%3E%3Ccircle cx='250' cy='50' r='6' fill='%23d7ac38'/%3E%3Ccircle cx='250' cy='250' r='6' fill='%23d7ac38'/%3E%3Ccircle cx='50' cy='250' r='6' fill='%23d7ac38'/%3E%3Cpath d='M150 50v200M50 150h200' stroke='url(%23webGrad)' stroke-width='1.5'/%3E%3Ccircle cx='150' cy='150' r='8' fill='%23d7ac38' opacity='0.8'/%3E%3Cpath d='M100 100h100v100H100z' fill='none' stroke='%230a1f44' stroke-width='1' opacity='0.6'/%3E%3C/svg%3E");
            background-size: 400px 400px;
            animation: webCircuitPulse 8s ease-in-out infinite;
        }

        @keyframes webCircuitPulse {
            0%, 100% { opacity: 0.04; transform: scale(1) rotate(0deg); }
            50% { opacity: 0.08; transform: scale(1.05) rotate(1deg); }
        }

        /* Service Badge */
        .web-service-badge {
            display: inline-block;
            background: linear-gradient(135deg, rgba(215, 172, 56, 0.15), rgba(213, 172, 115, 0.1));
            border: 1px solid rgba(215, 172, 56, 0.3);
            padding: 12px 28px;
            border-radius: 35px;
            font-size: 14px;
            font-weight: 700;
            color: #d7ac38;
            margin-bottom: 28px;
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(15px);
            box-shadow: 0 6px 25px rgba(215, 172, 56, 0.2);
            animation: webBadgePulse 4s ease-in-out infinite;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .web-service-badge::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(215, 172, 56, 0.3), transparent);
            animation: webBadgeShine 3s ease-in-out infinite;
        }

        @keyframes webBadgeShine {
            0% { left: -100%; }
            50%, 100% { left: 100%; }
        }

        @keyframes webBadgePulse {
            0%, 100% {
                box-shadow: 0 6px 25px rgba(215, 172, 56, 0.2);
                border-color: rgba(215, 172, 56, 0.3);
            }
            50% {
                box-shadow: 0 10px 35px rgba(215, 172, 56, 0.3);
                border-color: rgba(215, 172, 56, 0.4);
            }
        }

        /* Hero Section */
        .web-hero-section {
            padding: 100px 5% 80px;
            position: relative;
            overflow: hidden;
            min-height: 90vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }

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

        .web-code-snippet {
            position: absolute;
            font-family: 'Comic Neue', cursive;
            font-size: 13px;
            color: rgba(215, 172, 56, 0.4);
            background: rgba(255, 255, 255, 0.1);
            padding: 15px;
            border-radius: 8px;
            border: 1px solid rgba(215, 172, 56, 0.2);
            backdrop-filter: blur(10px);
        }

        .web-code-snippet:nth-child(1) {
            top: 15%;
            left: 8%;
            animation: webCodeFloat1 8s ease-in-out infinite;
        }

        .web-code-snippet:nth-child(2) {
            top: 25%;
            right: 10%;
            animation: webCodeFloat2 8s ease-in-out infinite 2s;
        }

        .web-code-snippet:nth-child(3) {
            bottom: 30%;
            left: 12%;
            animation: webCodeFloat1 8s ease-in-out infinite 4s;
        }

        .web-code-snippet:nth-child(4) {
            bottom: 20%;
            right: 15%;
            animation: webCodeFloat2 8s ease-in-out infinite 6s;
        }

        @keyframes webCodeFloat1 {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
                opacity: 0.4;
            }
            50% {
                transform: translateY(-20px) rotate(1deg);
                opacity: 0.7;
            }
        }

        @keyframes webCodeFloat2 {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
                opacity: 0.4;
            }
            50% {
                transform: translateY(-15px) rotate(-1deg);
                opacity: 0.7;
            }
        }

        .web-hero-content {
            text-align: center;
            z-index: 2;
            max-width: 1000px;
            padding: 0 20px;
            animation: webHeroEntry 2s ease-out;
        }

        @keyframes webHeroEntry {
            0% {
                opacity: 0;
                transform: translateY(60px) scale(0.95);
            }
            100% {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .web-hero-title {
            font-size: 4.5rem;
            font-weight: 900;
            margin-bottom: 28px;
            color: #0f172a;
            line-height: 1.1;
            position: relative;
            letter-spacing: -2.5px;
        }

        .web-hero-title .web-highlight {
            background: linear-gradient(135deg, #d7ac38 0%, #d5ac73 50%, #c9a366 100%);
            background-size: 300% 300%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            position: relative;
            animation: webHighlightShine 5s ease-in-out infinite;
        }

        @keyframes webHighlightShine {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .web-hero-title .web-highlight::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #d7ac38, #d5ac73, #d7ac38);
            background-size: 300% 100%;
            border-radius: 3px;
            animation: webUnderlineFlow 4s ease-in-out infinite;
        }

        @keyframes webUnderlineFlow {
            0%, 100% { background-position: 0% 50%; opacity: 0.9; }
            50% { background-position: 100% 50%; opacity: 1; }
        }

        .web-hero-subtitle {
            font-size: 1.5rem;
            margin-bottom: 35px;
            color: #64748b;
            font-weight: 500;
            animation: webFadeInUp 2s ease-out 0.5s both;
            line-height: 1.6;
        }

        @keyframes webFadeInUp {
            0% {
                opacity: 0;
                transform: translateY(40px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .web-tech-showcase {
            display: flex;
            justify-content: center;
            gap: 25px;
            margin: 50px 0;
            animation: webFadeInUp 2s ease-out 1s both;
            flex-wrap: wrap;
        }

        .web-tech-item {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.95) 100%);
            border: 1px solid rgba(215, 172, 56, 0.2);
            border-radius: 20px;
            padding: 25px 30px;
            text-align: center;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(25px);
            box-shadow: 0 8px 30px rgba(15, 23, 42, 0.1);
            min-width: 160px;
        }

        .web-tech-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, #d7ac38, #d5ac73);
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .web-tech-item:hover::before {
            opacity: 1;
        }

        .web-tech-item:hover {
            transform: translateY(-10px) scale(1.05);
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 1) 100%);
            box-shadow: 0 20px 50px rgba(215, 172, 56, 0.25);
            border-color: rgba(215, 172, 56, 0.35);
        }

        .web-tech-icon {
            font-size: 2.8rem;
            margin-bottom: 15px;
            display: block;
            animation: webTechBounce 2s ease-in-out infinite;
        }

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

        .web-tech-name {
            font-size: 1.1rem;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 8px;
        }

        .web-tech-desc {
            font-size: 0.95rem;
            color: #64748b;
            font-weight: 500;
        }

        /* Features Section */
        .web-features-section {
            padding: 120px 5% 100px;
            background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
            position: relative;
        }

        .web-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .web-section-title {
            text-align: center;
            margin-bottom: 80px;
        }

        .web-section-title h2 {
            font-size: 3.8rem;
            font-weight: 900;
            color: #0f172a;
            margin-bottom: 25px;
            position: relative;
        }

        .web-section-title h2 .web-highlight {
            background: linear-gradient(135deg, #d7ac38 0%, #d5ac73 50%, #c9a366 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .web-section-title p {
            font-size: 1.4rem;
            color: #64748b;
            max-width: 700px;
            margin: 0 auto;
            font-weight: 500;
            line-height: 1.6;
        }

        .web-features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 50px;
            margin-top: 100px;
        }

        .web-feature-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.98) 100%);
            border: 1px solid rgba(215, 172, 56, 0.15);
            border-radius: 28px;
            padding: 50px 40px;
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(25px);
            box-shadow: 0 10px 50px rgba(15, 23, 42, 0.08);
        }

        .web-feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #d7ac38, #d5ac73);
            opacity: 0;
            transition: opacity 0.6s ease;
        }

        .web-feature-card:hover::before {
            opacity: 1;
        }

        .web-feature-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 30px 80px rgba(215, 172, 56, 0.25);
            border-color: rgba(215, 172, 56, 0.3);
        }

        .web-feature-icon {
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, #d7ac38 0%, #d5ac73 100%);
            border-radius: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            margin-bottom: 35px;
            position: relative;
            box-shadow: 0 12px 40px rgba(215, 172, 56, 0.3);
            animation: webFeatureIconPulse 3s ease-in-out infinite;
        }

        @keyframes webFeatureIconPulse {
            0%, 100% {
                box-shadow: 0 12px 40px rgba(215, 172, 56, 0.3);
            }
            50% {
                box-shadow: 0 16px 50px rgba(215, 172, 56, 0.4);
            }
        }

        .web-feature-card h3 {
            font-size: 2rem;
            font-weight: 800;
            color: #0f172a;
            margin-bottom: 20px;
            line-height: 1.3;
        }

        .web-feature-card p {
            color: #64748b;
            font-size: 1.2rem;
            line-height: 1.7;
            margin-bottom: 25px;
            font-weight: 500;
        }

        .web-feature-list {
            list-style: none;
            margin-bottom: 35px;
        }

        .web-feature-list li {
            padding: 12px 0;
            color: #475569;
            position: relative;
            padding-left: 35px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }

        .web-feature-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #d7ac38;
            font-weight: 900;
            font-size: 1.3rem;
            top: 8px;
        }

        .web-feature-list li:hover {
            color: #1e293b;
            transform: translateX(10px);
        }

        /* Benefits Section */
        .web-benefits-section {
            padding: 120px 5% 100px;
            background: linear-gradient(135deg, #0a1f44 0%, #1e3a5f 50%, #2d4a6b 100%);
            position: relative;
            color: #ffffff;
        }

        .web-benefits-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 100px;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }

        .web-benefits-text h2 {
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 35px;
            color: #ffffff;
        }

        .web-benefits-text h2 .web-highlight {
            background: linear-gradient(135deg, #d7ac38 0%, #d5ac73 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .web-benefits-text p {
            font-size: 1.3rem;
            line-height: 1.8;
            margin-bottom: 35px;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 500;
        }

        .web-benefits-stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 25px;
            margin-top: 50px;
        }

        .web-benefit-stat {
            background: rgba(215, 172, 56, 0.1);
            border: 1px solid rgba(215, 172, 56, 0.25);
            border-radius: 20px;
            padding: 30px 25px;
            text-align: center;
            transition: all 0.5s ease;
            backdrop-filter: blur(15px);
        }

        .web-benefit-stat:hover {
            background: rgba(215, 172, 56, 0.15);
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(215, 172, 56, 0.25);
        }

        .web-stat-number {
            font-size: 3rem;
            font-weight: 900;
            color: #d7ac38;
            display: block;
            margin-bottom: 12px;
        }

        .web-stat-text {
            font-size: 1.1rem;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.9);
        }

        .web-benefits-visual {
            position: relative;
        }

        .web-benefits-img {
            width: 100%;
            border-radius: 28px;
            background: linear-gradient(135deg, rgba(215, 172, 56, 0.2) 0%, rgba(213, 172, 115, 0.1) 100%);
            min-height: 550px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10rem;
            color: rgba(215, 172, 56, 0.6);
            border: 2px solid rgba(215, 172, 56, 0.3);
            box-shadow: 0 20px 80px rgba(0, 0, 0, 0.4);
            position: relative;
            overflow: hidden;
        }

        .web-benefits-img::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent 30%, rgba(215, 172, 56, 0.1) 50%, transparent 70%);
            animation: webShimmer 3s ease-in-out infinite;
        }

        @keyframes webShimmer {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        /* Process Section */
        .web-process-section {
            padding: 120px 5% 100px;
            background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
            position: relative;
        }

        .web-process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 100px;
        }

        .web-process-step {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 1) 100%);
            border: 1px solid rgba(215, 172, 56, 0.15);
            border-radius: 24px;
            padding: 40px 35px;
            text-align: center;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            box-shadow: 0 8px 40px rgba(15, 23, 42, 0.08);
        }

        .web-process-step::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #d7ac38, #d5ac73);
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .web-process-step:hover::before {
            opacity: 1;
        }

        .web-process-step:hover {
            transform: translateY(-12px);
            box-shadow: 0 25px 60px rgba(215, 172, 56, 0.2);
            border-color: rgba(215, 172, 56, 0.25);
        }

        .web-step-number {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #d7ac38 0%, #d5ac73 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.2rem;
            font-weight: 900;
            color: #ffffff;
            margin: 0 auto 25px;
            box-shadow: 0 10px 35px rgba(215, 172, 56, 0.35);
        }

        .web-process-step h3 {
            font-size: 1.6rem;
            font-weight: 800;
            color: #0f172a;
            margin-bottom: 15px;
        }

        .web-process-step p {
            color: #64748b;
            font-size: 1.1rem;
            line-height: 1.6;
            font-weight: 500;
        }

        /* Technologies Section */
        .web-technologies-section {
            padding: 120px 5% 100px;
            background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
            position: relative;
        }

        .web-tech-categories {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 50px;
            margin-top: 100px;
        }

        .web-tech-category {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.95) 100%);
            border: 1px solid rgba(215, 172, 56, 0.15);
            border-radius: 24px;
            padding: 45px 40px;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            backdrop-filter: blur(20px);
            box-shadow: 0 8px 40px rgba(15, 23, 42, 0.08);
        }

        .web-tech-category::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #d7ac38, #d5ac73);
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .web-tech-category:hover::before {
            opacity: 1;
        }

        .web-tech-category:hover {
            transform: translateY(-12px);
            box-shadow: 0 25px 60px rgba(215, 172, 56, 0.2);
            border-color: rgba(215, 172, 56, 0.25);
        }

        .web-tech-category h3 {
            font-size: 1.8rem;
            font-weight: 800;
            color: #0f172a;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .web-tech-category-icon {
            font-size: 2.5rem;
        }

        .web-tech-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 20px;
        }

        .web-tech-tag {
            background: linear-gradient(135deg, rgba(215, 172, 56, 0.12), rgba(213, 172, 115, 0.08));
            border: 1px solid rgba(215, 172, 56, 0.25);
            padding: 10px 20px;
            border-radius: 25px;
            font-size: 13px;
            font-weight: 600;
            color: #d7ac38;
            transition: all 0.3s ease;
        }

        .web-tech-tag:hover {
            background: linear-gradient(135deg, #d7ac38, #d5ac73);
            color: #ffffff;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(215, 172, 56, 0.3);
        }

        /* CTA Section */
        .web-cta-section {
            padding: 120px 5% 100px;
            background: linear-gradient(135deg, #0a1f44 0%, #1e3a5f 50%, #2d4a6b 100%);
            position: relative;
            color: #ffffff;
            text-align: center;
        }

        .web-cta-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .web-cta-content h2 {
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 25px;
            color: #ffffff;
        }

        .web-cta-content h2 .web-highlight {
            background: linear-gradient(135deg, #d7ac38 0%, #d5ac73 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .web-cta-content p {
            font-size: 1.3rem;
            line-height: 1.7;
            margin-bottom: 45px;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 500;
        }

        .web-cta-buttons {
            display: flex;
            gap: 25px;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 50px;
        }

        .web-btn {
            padding: 18px 40px;
            border: none;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            font-family: 'Comic Neue', cursive;
        }

        .web-btn-primary {
            background: linear-gradient(135deg, #d7ac38 0%, #d5ac73 100%);
            color: #0a1f44;
            box-shadow: 0 10px 35px rgba(215, 172, 56, 0.35);
            position: relative;
        }

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

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

        .web-btn-primary:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 60px rgba(215, 172, 56, 0.5);
            background: linear-gradient(135deg, #e8bd49 0%, #e6bd84 100%);
        }

        .web-btn-secondary {
            background: rgba(255, 255, 255, 0.1);
            color: #ffffff;
            border: 2px solid rgba(215, 172, 56, 0.5);
            backdrop-filter: blur(20px);
            box-shadow: 0 10px 35px rgba(0, 0, 0, 0.2);
        }

        .web-btn-secondary:hover {
            background: rgba(215, 172, 56, 0.2);
            border-color: #d7ac38;
            transform: translateY(-5px);
            box-shadow: 0 20px 60px rgba(215, 172, 56, 0.3);
        }

        .web-btn-icon {
            width: 22px;
            height: 22px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
        }

        /* ============================================
   WEB DEVELOPMENT PAGE - RESPONSIVE CSS
   ============================================ */

/* Large Tablets & Small Laptops (1024px and below) */
@media screen and (max-width: 1024px) {
    .web-hero-title {
        font-size: 3.8rem;
    }

    .web-section-title h2 {
        font-size: 3.2rem;
    }

    .web-features-grid,
    .web-tech-categories {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 40px;
    }

    .web-benefits-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .web-benefits-img {
        min-height: 450px;
        font-size: 8rem;
    }

    .web-benefits-text h2 {
        font-size: 3rem;
    }

    .web-cta-content h2 {
        font-size: 3rem;
    }

    .web-process-steps {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 35px;
    }
}

/* Tablets (768px and below) */
@media screen and (max-width: 768px) {
    .web-hero-section {
        padding: 80px 5% 60px;
        min-height: auto;
    }

    .web-hero-title {
        font-size: 3rem;
        letter-spacing: -1.5px;
    }

    .web-hero-subtitle {
        font-size: 1.25rem;
    }

    .web-tech-showcase {
        gap: 15px;
        margin: 40px 0;
    }

    .web-tech-item {
        min-width: 140px;
        padding: 20px 25px;
    }

    .web-tech-icon {
        font-size: 2.3rem;
        margin-bottom: 12px;
    }

    .web-tech-name {
        font-size: 1rem;
    }

    .web-tech-desc {
        font-size: 0.88rem;
    }

    .web-features-section,
    .web-benefits-section,
    .web-process-section,
    .web-technologies-section,
    .web-cta-section {
        padding: 80px 5% 60px;
    }

    .web-section-title {
        margin-bottom: 60px;
    }

    .web-section-title h2 {
        font-size: 2.5rem;
    }

    .web-section-title p {
        font-size: 1.2rem;
    }

    .web-features-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        margin-top: 60px;
    }

    .web-feature-card {
        padding: 40px 30px;
        border-radius: 24px;
    }

    .web-feature-icon {
        width: 75px;
        height: 75px;
        font-size: 2.5rem;
        margin-bottom: 25px;
    }

    .web-feature-card h3 {
        font-size: 1.7rem;
    }

    .web-feature-card p {
        font-size: 1.1rem;
    }

    .web-feature-list li {
        font-size: 1rem;
        padding-left: 30px;
    }

    .web-benefits-text h2 {
        font-size: 2.5rem;
    }

    .web-benefits-text p {
        font-size: 1.15rem;
    }

    .web-benefits-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .web-benefit-stat {
        padding: 25px 20px;
    }

    .web-stat-number {
        font-size: 2.5rem;
    }

    .web-stat-text {
        font-size: 1rem;
    }

    .web-benefits-img {
        min-height: 400px;
        font-size: 7rem;
    }

    .web-process-steps {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 60px;
    }

    .web-process-step {
        padding: 35px 30px;
    }

    .web-step-number {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .web-process-step h3 {
        font-size: 1.5rem;
    }

    .web-tech-categories {
        grid-template-columns: 1fr;
        gap: 35px;
        margin-top: 60px;
    }

    .web-tech-category {
        padding: 35px 30px;
    }

    .web-tech-category h3 {
        font-size: 1.6rem;
    }

    .web-tech-category-icon {
        font-size: 2.2rem;
    }

    .web-cta-content h2 {
        font-size: 2.5rem;
    }

    .web-cta-content p {
        font-size: 1.15rem;
    }

    .web-cta-buttons {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .web-btn {
        width: 100%;
        max-width: 350px;
        justify-content: center;
    }

    /* Hide floating code snippets on tablets */
    .web-code-snippet:nth-child(3),
    .web-code-snippet:nth-child(4) {
        display: none;
    }
}

/* Mobile Devices (480px and below) */
@media screen and (max-width: 480px) {
    .web-service-badge {
        font-size: 12px;
        padding: 10px 22px;
        letter-spacing: 0.5px;
    }

    .web-hero-section {
        padding: 110px 5% 50px;
    }

    .web-hero-title {
        font-size: 2.2rem;
        letter-spacing: -1px;
    }

    .web-hero-title .web-highlight::after {
        height: 3px;
        bottom: -6px;
    }

    .web-hero-subtitle {
        font-size: 1.05rem;
        margin-bottom: 30px;
    }

    .web-tech-showcase {
        gap: 12px;
        margin: 35px 0;
    }

    .web-tech-item {
        min-width: 130px;
        padding: 18px 20px;
        border-radius: 16px;
    }

    .web-tech-icon {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .web-tech-name {
        font-size: 0.95rem;
    }

    .web-tech-desc {
        font-size: 0.82rem;
    }

    .web-features-section,
    .web-benefits-section,
    .web-process-section,
    .web-technologies-section,
    .web-cta-section {
        padding: 60px 5% 50px;
    }

    .web-section-title {
        margin-bottom: 50px;
    }

    .web-section-title h2 {
        font-size: 2rem;
    }

    .web-section-title p {
        font-size: 1.05rem;
    }

    .web-features-grid {
        margin-top: 50px;
        gap: 30px;
    }

    .web-feature-card {
        padding: 35px 25px;
        border-radius: 20px;
    }

    .web-feature-icon {
        width: 65px;
        height: 65px;
        font-size: 2.2rem;
        border-radius: 18px;
        margin-bottom: 20px;
    }

    .web-feature-card h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .web-feature-card p {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .web-feature-list li {
        font-size: 0.95rem;
        padding: 10px 0;
        padding-left: 28px;
    }

    .web-feature-list li::before {
        font-size: 1.1rem;
    }

    .web-benefits-text h2 {
        font-size: 2rem;
        margin-bottom: 25px;
    }

    .web-benefits-text p {
        font-size: 1.05rem;
        margin-bottom: 30px;
    }

    .web-benefits-stats {
        margin-top: 40px;
    }

    .web-benefit-stat {
        padding: 22px 18px;
        border-radius: 16px;
    }

    .web-stat-number {
        font-size: 2.2rem;
        margin-bottom: 10px;
    }

    .web-stat-text {
        font-size: 0.95rem;
    }

    .web-benefits-img {
        min-height: 350px;
        font-size: 6rem;
        border-radius: 20px;
    }

    .web-process-steps {
        margin-top: 50px;
        gap: 25px;
    }

    .web-process-step {
        padding: 30px 25px;
        border-radius: 20px;
    }

    .web-step-number {
        width: 65px;
        height: 65px;
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .web-process-step h3 {
        font-size: 1.35rem;
        margin-bottom: 12px;
    }

    .web-process-step p {
        font-size: 1rem;
    }

    .web-tech-categories {
        margin-top: 50px;
        gap: 30px;
    }

    .web-tech-category {
        padding: 30px 25px;
        border-radius: 20px;
    }

    .web-tech-category h3 {
        font-size: 1.4rem;
        gap: 12px;
    }

    .web-tech-category-icon {
        font-size: 2rem;
    }

    .web-tech-tags {
        gap: 10px;
        margin-top: 18px;
    }

    .web-tech-tag {
        padding: 8px 16px;
        border-radius: 20px;
        font-size: 12px;
    }

    .web-cta-content h2 {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .web-cta-content p {
        font-size: 1.05rem;
        margin-bottom: 35px;
    }

    .web-cta-buttons {
        margin-top: 40px;
    }

    .web-btn {
        padding: 16px 35px;
        font-size: 1rem;
        gap: 10px;
    }

    .web-btn-icon {
        width: 20px;
        height: 20px;
        font-size: 13px;
    }

    /* Hide all floating code snippets on mobile */
    .web-code-snippet {
        display: none;
    }
}

/* Extra Small Devices (360px and below) */
@media screen and (max-width: 360px) {
    .web-service-badge {
        font-size: 11px;
        padding: 8px 18px;
    }

    .web-hero-title {
        font-size: 1.9rem;
    }

    .web-hero-subtitle {
        font-size: 0.98rem;
    }

    .web-tech-item {
        min-width: 120px;
        padding: 16px 18px;
    }

    .web-tech-icon {
        font-size: 1.8rem;
    }

    .web-tech-name {
        font-size: 0.9rem;
    }

    .web-section-title h2 {
        font-size: 1.75rem;
    }

    .web-section-title p {
        font-size: 0.98rem;
    }

    .web-feature-card {
        padding: 30px 20px;
    }

    .web-feature-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
        border-radius: 16px;
    }

    .web-feature-card h3 {
        font-size: 1.35rem;
    }

    .web-feature-card p {
        font-size: 0.95rem;
    }

    .web-feature-list li {
        font-size: 0.9rem;
        padding-left: 25px;
    }

    .web-benefits-text h2 {
        font-size: 1.8rem;
    }

    .web-benefits-text p {
        font-size: 1rem;
    }

    .web-benefit-stat {
        padding: 20px 15px;
    }

    .web-stat-number {
        font-size: 2rem;
    }

    .web-stat-text {
        font-size: 0.9rem;
    }

    .web-benefits-img {
        min-height: 300px;
        font-size: 5rem;
    }

    .web-process-step {
        padding: 25px 20px;
    }

    .web-step-number {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
        margin-bottom: 18px;
    }

    .web-process-step h3 {
        font-size: 1.25rem;
    }

    .web-process-step p {
        font-size: 0.95rem;
    }

    .web-tech-category {
        padding: 25px 20px;
    }

    .web-tech-category h3 {
        font-size: 1.3rem;
        gap: 10px;
    }

    .web-tech-category-icon {
        font-size: 1.8rem;
    }

    .web-tech-tag {
        padding: 7px 14px;
        font-size: 11px;
    }

    .web-cta-content h2 {
        font-size: 1.8rem;
    }

    .web-cta-content p {
        font-size: 1rem;
    }

    .web-btn {
        padding: 14px 30px;
        font-size: 0.95rem;
    }

    .web-btn-icon {
        width: 18px;
        height: 18px;
        font-size: 12px;
    }
}

/* Ultra Small Devices (320px and below) */
@media screen and (max-width: 320px) {
    .web-service-badge {
        font-size: 10px;
        padding: 7px 16px;
    }

    .web-hero-section {
        padding: 50px 4% 40px;
    }

    .web-hero-title {
        font-size: 1.7rem;
        letter-spacing: -0.5px;
    }

    .web-hero-subtitle {
        font-size: 0.92rem;
    }

    .web-tech-showcase {
        gap: 10px;
        margin: 30px 0;
    }

    .web-tech-item {
        min-width: 110px;
        padding: 14px 16px;
        border-radius: 14px;
    }

    .web-tech-icon {
        font-size: 1.6rem;
        margin-bottom: 8px;
    }

    .web-tech-name {
        font-size: 0.85rem;
        margin-bottom: 6px;
    }

    .web-tech-desc {
        font-size: 0.75rem;
    }

    .web-features-section,
    .web-benefits-section,
    .web-process-section,
    .web-technologies-section,
    .web-cta-section {
        padding: 50px 4% 40px;
    }

    .web-section-title {
        margin-bottom: 40px;
    }

    .web-section-title h2 {
        font-size: 1.6rem;
    }

    .web-section-title p {
        font-size: 0.92rem;
    }

    .web-features-grid {
        margin-top: 40px;
        gap: 25px;
    }

    .web-feature-card {
        padding: 25px 18px;
        border-radius: 18px;
    }

    .web-feature-icon {
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
        border-radius: 14px;
        margin-bottom: 18px;
    }

    .web-feature-card h3 {
        font-size: 1.25rem;
        margin-bottom: 12px;
    }

    .web-feature-card p {
        font-size: 0.9rem;
        margin-bottom: 18px;
    }

    .web-feature-list {
        margin-bottom: 25px;
    }

    .web-feature-list li {
        font-size: 0.85rem;
        padding: 8px 0;
        padding-left: 22px;
    }

    .web-feature-list li::before {
        font-size: 1rem;
        top: 6px;
    }

    .web-benefits-text h2 {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }

    .web-benefits-text p {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }

    .web-benefits-stats {
        margin-top: 35px;
        gap: 15px;
    }

    .web-benefit-stat {
        padding: 18px 12px;
        border-radius: 14px;
    }

    .web-stat-number {
        font-size: 1.8rem;
        margin-bottom: 8px;
    }

    .web-stat-text {
        font-size: 0.85rem;
    }

    .web-benefits-img {
        min-height: 280px;
        font-size: 4.5rem;
        border-radius: 18px;
    }

    .web-process-steps {
        margin-top: 40px;
        gap: 20px;
    }

    .web-process-step {
        padding: 22px 18px;
        border-radius: 18px;
    }

    .web-step-number {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .web-process-step h3 {
        font-size: 1.15rem;
        margin-bottom: 10px;
    }

    .web-process-step p {
        font-size: 0.9rem;
    }

    .web-tech-categories {
        margin-top: 40px;
        gap: 25px;
    }

    .web-tech-category {
        padding: 22px 18px;
        border-radius: 18px;
    }

    .web-tech-category h3 {
        font-size: 1.2rem;
        gap: 8px;
        margin-bottom: 16px;
    }

    .web-tech-category-icon {
        font-size: 1.6rem;
    }

    .web-tech-tags {
        gap: 8px;
        margin-top: 15px;
    }

    .web-tech-tag {
        padding: 6px 12px;
        border-radius: 18px;
        font-size: 10px;
    }

    .web-cta-content h2 {
        font-size: 1.6rem;
        margin-bottom: 18px;
    }

    .web-cta-content p {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }

    .web-cta-buttons {
        margin-top: 35px;
        gap: 15px;
    }

    .web-btn {
        padding: 13px 25px;
        font-size: 0.9rem;
        gap: 8px;
        border-radius: 10px;
    }

    .web-btn-icon {
        width: 16px;
        height: 16px;
        font-size: 11px;
    }
}
         
      






        /* Apps Page */



   

        
     

        .mobile-app-page {
            font-family: 'Comic Neue', cursive;
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
            color: #1e293b;
            overflow-x: hidden;
            position: relative;
            min-height: 100vh;
        }

        /* Mobile-themed Grid Background */
        .mobile-tech-grid {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 25% 25%, rgba(215, 172, 56, 0.05) 2px, transparent 2px),
                radial-gradient(circle at 75% 75%, rgba(10, 31, 68, 0.03) 1px, transparent 1px),
                linear-gradient(45deg, rgba(215, 172, 56, 0.02) 1px, transparent 1px),
                linear-gradient(-45deg, rgba(10, 31, 68, 0.02) 1px, transparent 1px);
            background-size: 60px 60px, 40px 40px, 30px 30px, 30px 30px;
            z-index: -3;
            animation: mobileGridPulse 15s ease-in-out infinite;
        }

        @keyframes mobileGridPulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.7; transform: scale(1.02); }
        }

        /* Mobile Circuit Background */
        .mobile-circuit-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -2;
            opacity: 0.03;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 400'%3E%3Cdefs%3E%3ClinearGradient id='mobileGrad' x1='0%25' y1='0%25' x2='100%25' y2='100%25'%3E%3Cstop offset='0%25' style='stop-color:%23d7ac38;stop-opacity:1' /%3E%3Cstop offset='100%25' style='stop-color:%230a1f44;stop-opacity:1' /%3E%3C/linearGradient%3E%3C/defs%3E%3Crect x='100' y='80' width='200' height='240' rx='25' ry='25' fill='none' stroke='url(%23mobileGrad)' stroke-width='2'/%3E%3Ccircle cx='200' cy='100' r='8' fill='%23d7ac38'/%3E%3Crect x='130' y='120' width='140' height='180' rx='8' ry='8' fill='none' stroke='%23d7ac38' stroke-width='1.5' opacity='0.6'/%3E%3Ccircle cx='200' cy='310' r='15' fill='none' stroke='%23d7ac38' stroke-width='2' opacity='0.8'/%3E%3Cpath d='M180 140h40M180 160h40M180 180h40' stroke='%230a1f44' stroke-width='3' opacity='0.4'/%3E%3C/svg%3E");
            background-size: 500px 500px;
            animation: mobileCircuitFloat 12s ease-in-out infinite;
        }

        @keyframes mobileCircuitFloat {
            0%, 100% { 
                opacity: 0.03; 
                transform: translateX(0) translateY(0) rotate(0deg); 
            }
            25% { 
                opacity: 0.06; 
                transform: translateX(20px) translateY(-10px) rotate(1deg); 
            }
            50% { 
                opacity: 0.04; 
                transform: translateX(-10px) translateY(20px) rotate(-1deg); 
            }
            75% { 
                opacity: 0.05; 
                transform: translateX(15px) translateY(-15px) rotate(0.5deg); 
            }
        }

        /* Mobile App Service Badge */
        .mobile-service-badge {
            display: inline-block;
            background: linear-gradient(135deg, rgba(215, 172, 56, 0.15), rgba(213, 172, 115, 0.1));
            border: 1px solid rgba(215, 172, 56, 0.3);
            padding: 12px 28px;
            border-radius: 35px;
            font-size: 14px;
            font-weight: 700;
            color: #d7ac38;
            margin-bottom: 28px;
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(15px);
            box-shadow: 0 6px 25px rgba(215, 172, 56, 0.2);
            animation: mobileBadgeFloat 4s ease-in-out infinite;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .mobile-service-badge::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(215, 172, 56, 0.3), transparent);
            animation: mobileBadgeShine 3s ease-in-out infinite;
        }

        @keyframes mobileBadgeShine {
            0% { left: -100%; }
            50%, 100% { left: 100%; }
        }

        @keyframes mobileBadgeFloat {
            0%, 100% {
                box-shadow: 0 6px 25px rgba(215, 172, 56, 0.2);
                transform: translateY(0);
            }
            50% {
                box-shadow: 0 10px 35px rgba(215, 172, 56, 0.3);
                transform: translateY(-3px);
            }
        }

        /* Hero Section */
        .mobile-hero-section {
            padding: 100px 5% 80px;
            position: relative;
            overflow: hidden;
            min-height: 90vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }

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

        .mobile-app-icon {
            position: absolute;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, rgba(215, 172, 56, 0.2), rgba(213, 172, 115, 0.15));
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: rgba(215, 172, 56, 0.7);
            border: 1px solid rgba(215, 172, 56, 0.2);
            backdrop-filter: blur(10px);
        }

        .mobile-app-icon:nth-child(1) {
            top: 20%;
            left: 10%;
            animation: mobileIconFloat1 6s ease-in-out infinite;
        }

        .mobile-app-icon:nth-child(2) {
            top: 30%;
            right: 15%;
            animation: mobileIconFloat2 6s ease-in-out infinite 1s;
        }

        .mobile-app-icon:nth-child(3) {
            bottom: 35%;
            left: 8%;
            animation: mobileIconFloat1 6s ease-in-out infinite 2s;
        }

        .mobile-app-icon:nth-child(4) {
            bottom: 25%;
            right: 12%;
            animation: mobileIconFloat2 6s ease-in-out infinite 3s;
        }

        .mobile-app-icon:nth-child(5) {
            top: 60%;
            left: 50%;
            transform: translateX(-50%);
            animation: mobileIconFloat1 6s ease-in-out infinite 4s;
        }

        @keyframes mobileIconFloat1 {
            0%, 100% {
                transform: translateY(0) rotate(0deg) scale(1);
                opacity: 0.6;
            }
            33% {
                transform: translateY(-15px) rotate(5deg) scale(1.1);
                opacity: 0.9;
            }
            66% {
                transform: translateY(10px) rotate(-3deg) scale(0.95);
                opacity: 0.7;
            }
        }

        @keyframes mobileIconFloat2 {
            0%, 100% {
                transform: translateY(0) rotate(0deg) scale(1);
                opacity: 0.6;
            }
            33% {
                transform: translateY(20px) rotate(-5deg) scale(1.05);
                opacity: 0.8;
            }
            66% {
                transform: translateY(-12px) rotate(3deg) scale(1.1);
                opacity: 0.9;
            }
        }

        .mobile-hero-content {
            text-align: center;
            z-index: 2;
            max-width: 1000px;
            padding: 0 20px;
            animation: mobileHeroSlide 2s ease-out;
        }

        @keyframes mobileHeroSlide {
            0% {
                opacity: 0;
                transform: translateX(-100px) scale(0.9);
            }
            100% {
                opacity: 1;
                transform: translateX(0) scale(1);
            }
        }

        .mobile-hero-title {
            font-size: 4.5rem;
            font-weight: 900;
            margin-bottom: 28px;
            color: #0f172a;
            line-height: 1.1;
            position: relative;
            letter-spacing: -2.5px;
        }

        .mobile-hero-title .mobile-highlight {
            background: linear-gradient(135deg, #d7ac38 0%, #d5ac73 50%, #c9a366 100%);
            background-size: 300% 300%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            position: relative;
            animation: mobileHighlightPulse 5s ease-in-out infinite;
        }

        @keyframes mobileHighlightPulse {
            0%, 100% { background-position: 0% 50%; filter: brightness(1); }
            50% { background-position: 100% 50%; filter: brightness(1.2); }
        }

        .mobile-hero-title .mobile-highlight::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #d7ac38, #d5ac73, #d7ac38);
            background-size: 200% 100%;
            border-radius: 2px;
            animation: mobileUnderlineSlide 4s ease-in-out infinite;
        }

        @keyframes mobileUnderlineSlide {
            0%, 100% { background-position: 0% 50%; opacity: 0.8; }
            50% { background-position: 100% 50%; opacity: 1; }
        }

        .mobile-hero-subtitle {
            font-size: 1.5rem;
            margin-bottom: 35px;
            color: #64748b;
            font-weight: 500;
            animation: mobileSlideUp 2s ease-out 0.5s both;
            line-height: 1.6;
        }

        @keyframes mobileSlideUp {
            0% {
                opacity: 0;
                transform: translateY(50px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .mobile-platform-showcase {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin: 50px 0;
            animation: mobileSlideUp 2s ease-out 1s both;
            flex-wrap: wrap;
        }

        .mobile-platform-item {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.95) 100%);
            border: 1px solid rgba(215, 172, 56, 0.2);
            border-radius: 25px;
            padding: 30px 35px;
            text-align: center;
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(25px);
            box-shadow: 0 8px 30px rgba(15, 23, 42, 0.1);
            min-width: 180px;
        }

        .mobile-platform-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, #d7ac38, #d5ac73);
            opacity: 0;
            transition: opacity 0.6s ease;
        }

        .mobile-platform-item:hover::before {
            opacity: 1;
        }

        .mobile-platform-item:hover {
            transform: translateY(-15px) scale(1.08) rotate(2deg);
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 1) 100%);
            box-shadow: 0 25px 60px rgba(215, 172, 56, 0.3);
            border-color: rgba(215, 172, 56, 0.4);
        }

        .mobile-platform-icon {
            font-size: 3.2rem;
            margin-bottom: 18px;
            display: block;
            animation: mobilePlatformBounce 3s ease-in-out infinite;
        }

        @keyframes mobilePlatformBounce {
            0%, 100% { transform: translateY(0) scale(1); }
            25% { transform: translateY(-5px) scale(1.05); }
            50% { transform: translateY(0) scale(0.98); }
            75% { transform: translateY(-8px) scale(1.02); }
        }

        .mobile-platform-name {
            font-size: 1.2rem;
            font-weight: 800;
            color: #0f172a;
            margin-bottom: 8px;
        }

        .mobile-platform-desc {
            font-size: 1rem;
            color: #64748b;
            font-weight: 600;
        }

        /* Features Section */
        .mobile-features-section {
            padding: 120px 5% 100px;
            background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
            position: relative;
        }

        .mobile-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .mobile-section-title {
            text-align: center;
            margin-bottom: 80px;
        }

        .mobile-section-title h2 {
            font-size: 3.8rem;
            font-weight: 900;
            color: #0f172a;
            margin-bottom: 25px;
            position: relative;
        }

        .mobile-section-title h2 .mobile-highlight {
            background: linear-gradient(135deg, #d7ac38 0%, #d5ac73 50%, #c9a366 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .mobile-section-title p {
            font-size: 1.4rem;
            color: #64748b;
            max-width: 700px;
            margin: 0 auto;
            font-weight: 500;
            line-height: 1.6;
        }

        .mobile-features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 50px;
            margin-top: 100px;
        }

        .mobile-feature-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.98) 100%);
            border: 1px solid rgba(215, 172, 56, 0.15);
            border-radius: 30px;
            padding: 50px 40px;
            transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(25px);
            box-shadow: 0 10px 50px rgba(15, 23, 42, 0.08);
        }

        .mobile-feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #d7ac38, #d5ac73);
            opacity: 0;
            transition: opacity 0.7s ease;
        }

        .mobile-feature-card::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: radial-gradient(circle, rgba(215, 172, 56, 0.1) 0%, transparent 70%);
            transition: all 0.7s ease;
            transform: translate(-50%, -50%);
        }

        .mobile-feature-card:hover::before {
            opacity: 1;
        }

        .mobile-feature-card:hover::after {
            width: 300px;
            height: 300px;
        }

        .mobile-feature-card:hover {
            transform: translateY(-20px) scale(1.03) rotate(1deg);
            box-shadow: 0 35px 90px rgba(215, 172, 56, 0.3);
            border-color: rgba(215, 172, 56, 0.35);
        }

        .mobile-feature-icon {
            width: 95px;
            height: 95px;
            background: linear-gradient(135deg, #d7ac38 0%, #d5ac73 100%);
            border-radius: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3.2rem;
            margin-bottom: 35px;
            position: relative;
            z-index: 2;
            box-shadow: 0 15px 45px rgba(215, 172, 56, 0.35);
            animation: mobileFeatureIconWave 4s ease-in-out infinite;
        }

        @keyframes mobileFeatureIconWave {
            0%, 100% {
                box-shadow: 0 15px 45px rgba(215, 172, 56, 0.35);
                transform: rotate(0deg);
            }
            25% {
                box-shadow: 0 20px 55px rgba(215, 172, 56, 0.4);
                transform: rotate(2deg);
            }
            50% {
                box-shadow: 0 18px 50px rgba(215, 172, 56, 0.38);
                transform: rotate(0deg);
            }
            75% {
                box-shadow: 0 22px 60px rgba(215, 172, 56, 0.42);
                transform: rotate(-2deg);
            }
        }

        .mobile-feature-card h3 {
            font-size: 2.1rem;
            font-weight: 800;
            color: #0f172a;
            margin-bottom: 20px;
            line-height: 1.3;
            position: relative;
            z-index: 2;
        }

        .mobile-feature-card p {
            color: #64748b;
            font-size: 1.2rem;
            line-height: 1.7;
            margin-bottom: 25px;
            font-weight: 500;
            position: relative;
            z-index: 2;
        }

        .mobile-feature-list {
            list-style: none;
            margin-bottom: 35px;
            position: relative;
            z-index: 2;
        }

        .mobile-feature-list li {
            padding: 12px 0;
            color: #475569;
            position: relative;
            padding-left: 35px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.4s ease;
        }

        .mobile-feature-list li::before {
            content: '📱';
            position: absolute;
            left: 0;
            top: 8px;
            font-size: 1.2rem;
        }

        .mobile-feature-list li:hover {
            color: #1e293b;
            transform: translateX(15px);
            background: rgba(215, 172, 56, 0.05);
            border-radius: 8px;
            padding-left: 40px;
            padding-right: 15px;
        }

        /* Uses Section */
        .mobile-uses-section {
            padding: 120px 5% 100px;
            background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 50%, #cbd5e1 100%);
            position: relative;
        }

        .mobile-uses-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 40px;
            margin-top: 100px;
        }

        .mobile-use-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 1) 100%);
            border: 1px solid rgba(215, 172, 56, 0.15);
            border-radius: 25px;
            padding: 40px 35px;
            text-align: center;
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            backdrop-filter: blur(20px);
            box-shadow: 0 8px 40px rgba(15, 23, 42, 0.08);
        }

        .mobile-use-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #d7ac38, #d5ac73);
            opacity: 0;
            transition: opacity 0.6s ease;
        }

        .mobile-use-card:hover::before {
            opacity: 1;
        }

        .mobile-use-card:hover {
            transform: translateY(-15px) rotate(-1deg);
            box-shadow: 0 30px 70px rgba(215, 172, 56, 0.25);
            border-color: rgba(215, 172, 56, 0.3);
        }

        .mobile-use-icon {
            font-size: 4rem;
            margin-bottom: 25px;
            display: block;
            animation: mobileUseIconBounce 2.5s ease-in-out infinite;
        }

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

        .mobile-use-card h3 {
            font-size: 1.7rem;
            font-weight: 800;
            color: #0f172a;
            margin-bottom: 15px;
        }

        .mobile-use-card p {
            color: #64748b;
            font-size: 1.1rem;
            line-height: 1.6;
            font-weight: 500;
        }

        /* Benefits Section */
        .mobile-benefits-section {
            padding: 120px 5% 100px;
            background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
            position: relative;
        }

        .mobile-benefits-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 100px;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }

        .mobile-benefits-text h2 {
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 35px;
            color: #0f172a;
        }

        .mobile-benefits-text h2 .mobile-highlight {
            background: linear-gradient(135deg, #d7ac38 0%, #d5ac73 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .mobile-benefits-text p {
            font-size: 1.3rem;
            line-height: 1.8;
            margin-bottom: 35px;
            color: #64748b;
            font-weight: 500;
        }

        .mobile-benefits-stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 25px;
            margin-top: 50px;
        }

        .mobile-benefit-stat {
            background: linear-gradient(135deg, rgba(215, 172, 56, 0.1) 0%, rgba(213, 172, 115, 0.08) 100%);
            border: 1px solid rgba(215, 172, 56, 0.25);
            border-radius: 20px;
            padding: 30px 25px;
            text-align: center;
            transition: all 0.5s ease;
            backdrop-filter: blur(15px);
        }

        .mobile-benefit-stat:hover {
            background: linear-gradient(135deg, rgba(215, 172, 56, 0.15) 0%, rgba(213, 172, 115, 0.12) 100%);
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 15px 40px rgba(215, 172, 56, 0.25);
        }

        .mobile-stat-number {
            font-size: 3rem;
            font-weight: 900;
            color: #d7ac38;
            display: block;
            margin-bottom: 12px;
        }

        .mobile-stat-text {
            font-size: 1.1rem;
            font-weight: 600;
            color: #1e293b;
        }

        .mobile-benefits-visual {
            position: relative;
        }

        .mobile-benefits-img {
            width: 100%;
            border-radius: 30px;
            background: linear-gradient(135deg, rgba(215, 172, 56, 0.15) 0%, rgba(213, 172, 115, 0.1) 100%);
            min-height: 550px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12rem;
            color: rgba(215, 172, 56, 0.6);
            border: 2px solid rgba(215, 172, 56, 0.25);
            box-shadow: 0 20px 80px rgba(215, 172, 56, 0.2);
            position: relative;
            overflow: hidden;
        }

        .mobile-benefits-img::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent 30%, rgba(215, 172, 56, 0.1) 50%, transparent 70%);
            animation: mobileShimmerWave 4s ease-in-out infinite;
        }

        @keyframes mobileShimmerWave {
            0% { transform: translateX(-100%) rotate(45deg); }
            100% { transform: translateX(100%) rotate(45deg); }
        }

        /* Process Section */
        .mobile-process-section {
            padding: 120px 5% 100px;
            background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
            position: relative;
        }

        .mobile-process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 100px;
        }

        .mobile-process-step {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 1) 100%);
            border: 1px solid rgba(215, 172, 56, 0.15);
            border-radius: 25px;
            padding: 40px 35px;
            text-align: center;
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            box-shadow: 0 8px 40px rgba(15, 23, 42, 0.08);
        }

        .mobile-process-step::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #d7ac38, #d5ac73);
            opacity: 0;
            transition: opacity 0.6s ease;
        }

        .mobile-process-step:hover::before {
            opacity: 1;
        }

        .mobile-process-step:hover {
            transform: translateY(-15px) rotate(1deg);
            box-shadow: 0 30px 70px rgba(215, 172, 56, 0.25);
            border-color: rgba(215, 172, 56, 0.3);
        }

        .mobile-step-number {
            width: 85px;
            height: 85px;
            background: linear-gradient(135deg, #d7ac38 0%, #d5ac73 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.4rem;
            font-weight: 900;
            color: #ffffff;
            margin: 0 auto 25px;
            box-shadow: 0 12px 40px rgba(215, 172, 56, 0.4);
            animation: mobileStepPulse 3s ease-in-out infinite;
        }

        @keyframes mobileStepPulse {
            0%, 100% { 
                box-shadow: 0 12px 40px rgba(215, 172, 56, 0.4);
                transform: scale(1);
            }
            50% { 
                box-shadow: 0 16px 50px rgba(215, 172, 56, 0.5);
                transform: scale(1.05);
            }
        }

        .mobile-process-step h3 {
            font-size: 1.7rem;
            font-weight: 800;
            color: #0f172a;
            margin-bottom: 15px;
        }

        .mobile-process-step p {
            color: #64748b;
            font-size: 1.1rem;
            line-height: 1.6;
            font-weight: 500;
        }

        /* Technologies Section */
        .mobile-technologies-section {
            padding: 120px 5% 100px;
            background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
            position: relative;
        }

        .mobile-tech-categories {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 50px;
            margin-top: 100px;
        }

        .mobile-tech-category {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.95) 100%);
            border: 1px solid rgba(215, 172, 56, 0.15);
            border-radius: 25px;
            padding: 45px 40px;
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            backdrop-filter: blur(20px);
            box-shadow: 0 8px 40px rgba(15, 23, 42, 0.08);
        }

        .mobile-tech-category::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #d7ac38, #d5ac73);
            opacity: 0;
            transition: opacity 0.6s ease;
        }

        .mobile-tech-category:hover::before {
            opacity: 1;
        }

        .mobile-tech-category:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 30px 70px rgba(215, 172, 56, 0.25);
            border-color: rgba(215, 172, 56, 0.3);
        }

        .mobile-tech-category h3 {
            font-size: 1.8rem;
            font-weight: 800;
            color: #0f172a;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .mobile-tech-category-icon {
            font-size: 2.5rem;
            animation: mobileTechIconRotate 4s ease-in-out infinite;
        }

        @keyframes mobileTechIconRotate {
            0%, 100% { transform: rotate(0deg); }
            25% { transform: rotate(5deg); }
            50% { transform: rotate(0deg); }
            75% { transform: rotate(-5deg); }
        }

        .mobile-tech-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 20px;
        }

        .mobile-tech-tag {
            background: linear-gradient(135deg, rgba(215, 172, 56, 0.12), rgba(213, 172, 115, 0.08));
            border: 1px solid rgba(215, 172, 56, 0.25);
            padding: 10px 20px;
            border-radius: 25px;
            font-size: 13px;
            font-weight: 600;
            color: #d7ac38;
            transition: all 0.4s ease;
            cursor: pointer;
        }

        .mobile-tech-tag:hover {
            background: linear-gradient(135deg, #d7ac38, #d5ac73);
            color: #ffffff;
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 8px 20px rgba(215, 172, 56, 0.3);
        }

        /* CTA Section - Light Background */
        .mobile-cta-section {
            padding: 120px 5% 100px;
            background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
            position: relative;
            text-align: center;
        }

        .mobile-cta-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .mobile-cta-content h2 {
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 25px;
            color: #0f172a;
        }

        .mobile-cta-content h2 .mobile-highlight {
            background: linear-gradient(135deg, #d7ac38 0%, #d5ac73 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .mobile-cta-content p {
            font-size: 1.3rem;
            line-height: 1.7;
            margin-bottom: 45px;
            color: #64748b;
            font-weight: 500;
        }

        .mobile-cta-buttons {
            display: flex;
            gap: 25px;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 50px;
        }

        .mobile-btn {
            padding: 18px 40px;
            border: none;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            font-family: 'Comic Neue', cursive;
        }

        .mobile-btn-primary {
            background: linear-gradient(135deg, #d7ac38 0%, #d5ac73 100%);
            color: #0a1f44;
            box-shadow: 0 10px 35px rgba(215, 172, 56, 0.35);
            position: relative;
        }

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

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

        .mobile-btn-primary:hover {
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 20px 60px rgba(215, 172, 56, 0.5);
            background: linear-gradient(135deg, #e8bd49 0%, #e6bd84 100%);
        }

        .mobile-btn-secondary {
            background: rgba(215, 172, 56, 0.1);
            color: #d7ac38;
            border: 2px solid rgba(215, 172, 56, 0.3);
            backdrop-filter: blur(20px);
            box-shadow: 0 10px 35px rgba(215, 172, 56, 0.2);
        }

        .mobile-btn-secondary:hover {
            background: rgba(215, 172, 56, 0.15);
            border-color: #d7ac38;
            color: #0a1f44;
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 20px 60px rgba(215, 172, 56, 0.3);
        }

        .mobile-btn-icon {
            width: 22px;
            height: 22px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
        }

       /* ============================================
   MOBILE APP PAGE - RESPONSIVE CSS
   ============================================ */

/* Large Tablets & Small Laptops (1024px and below) */
@media screen and (max-width: 1024px) {
    .mobile-hero-title {
        font-size: 3.8rem;
    }

    .mobile-section-title h2 {
        font-size: 3.2rem;
    }

    .mobile-features-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 40px;
    }

    .mobile-uses-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 35px;
    }

    .mobile-benefits-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .mobile-benefits-img {
        min-height: 450px;
        font-size: 10rem;
    }

    .mobile-benefits-text h2 {
        font-size: 3rem;
    }

    .mobile-cta-content h2 {
        font-size: 3rem;
    }

    .mobile-process-steps {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 35px;
    }

    .mobile-tech-categories {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 40px;
    }
}

/* Tablets (768px and below) */
@media screen and (max-width: 768px) {
    .mobile-hero-section {
        padding: 80px 5% 60px;
        min-height: auto;
    }

    .mobile-hero-title {
        font-size: 3rem;
        letter-spacing: -1.5px;
    }

    .mobile-hero-subtitle {
        font-size: 1.25rem;
    }

    .mobile-platform-showcase {
        gap: 20px;
        margin: 40px 0;
    }

    .mobile-platform-item {
        min-width: 150px;
        padding: 25px 30px;
    }

    .mobile-platform-icon {
        font-size: 2.8rem;
        margin-bottom: 15px;
    }

    .mobile-platform-name {
        font-size: 1.1rem;
    }

    .mobile-platform-desc {
        font-size: 0.95rem;
    }

    .mobile-features-section,
    .mobile-uses-section,
    .mobile-benefits-section,
    .mobile-process-section,
    .mobile-technologies-section,
    .mobile-cta-section {
        padding: 80px 5% 60px;
    }

    .mobile-section-title {
        margin-bottom: 60px;
    }

    .mobile-section-title h2 {
        font-size: 2.5rem;
    }

    .mobile-section-title p {
        font-size: 1.2rem;
    }

    .mobile-features-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        margin-top: 60px;
    }

    .mobile-feature-card {
        padding: 40px 30px;
        border-radius: 25px;
    }

    .mobile-feature-icon {
        width: 80px;
        height: 80px;
        font-size: 2.8rem;
        border-radius: 22px;
        margin-bottom: 25px;
    }

    .mobile-feature-card h3 {
        font-size: 1.8rem;
    }

    .mobile-feature-card p {
        font-size: 1.1rem;
    }

    .mobile-feature-list li {
        font-size: 1rem;
        padding-left: 30px;
    }

    .mobile-uses-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 60px;
    }

    .mobile-use-card {
        padding: 35px 30px;
    }

    .mobile-use-icon {
        font-size: 3.5rem;
        margin-bottom: 20px;
    }

    .mobile-use-card h3 {
        font-size: 1.5rem;
    }

    .mobile-benefits-text h2 {
        font-size: 2.5rem;
    }

    .mobile-benefits-text p {
        font-size: 1.15rem;
    }

    .mobile-benefits-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .mobile-benefit-stat {
        padding: 25px 20px;
    }

    .mobile-stat-number {
        font-size: 2.5rem;
    }

    .mobile-stat-text {
        font-size: 1rem;
    }

    .mobile-benefits-img {
        min-height: 400px;
        font-size: 8rem;
    }

    .mobile-process-steps {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 60px;
    }

    .mobile-process-step {
        padding: 35px 30px;
    }

    .mobile-step-number {
        width: 75px;
        height: 75px;
        font-size: 2.1rem;
    }

    .mobile-process-step h3 {
        font-size: 1.5rem;
    }

    .mobile-tech-categories {
        grid-template-columns: 1fr;
        gap: 35px;
        margin-top: 60px;
    }

    .mobile-tech-category {
        padding: 35px 30px;
    }

    .mobile-tech-category h3 {
        font-size: 1.6rem;
    }

    .mobile-tech-category-icon {
        font-size: 2.2rem;
    }

    .mobile-cta-content h2 {
        font-size: 2.5rem;
    }

    .mobile-cta-content p {
        font-size: 1.15rem;
    }

    .mobile-cta-buttons {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .mobile-btn {
        width: 100%;
        max-width: 350px;
        justify-content: center;
    }

    /* Hide some floating app icons on tablets */
    .mobile-app-icon:nth-child(4),
    .mobile-app-icon:nth-child(5) {
        display: none;
    }
}

/* Mobile Devices (480px and below) */
@media screen and (max-width: 480px) {
    .mobile-service-badge {
        font-size: 12px;
        padding: 10px 22px;
        letter-spacing: 0.5px;
    }

    .mobile-hero-section {
        padding: 60px 5% 50px;
    }

    .mobile-hero-title {
        font-size: 2.2rem;
        letter-spacing: -1px;
    }

    .mobile-hero-title .mobile-highlight::after {
        height: 3px;
        bottom: -6px;
    }

    .mobile-hero-subtitle {
        font-size: 1.05rem;
        margin-bottom: 30px;
    }

    .mobile-platform-showcase {
        gap: 15px;
        margin: 35px 0;
    }

    .mobile-platform-item {
        min-width: 140px;
        padding: 22px 25px;
        border-radius: 20px;
    }

    .mobile-platform-icon {
        font-size: 2.4rem;
        margin-bottom: 12px;
    }

    .mobile-platform-name {
        font-size: 1rem;
    }

    .mobile-platform-desc {
        font-size: 0.88rem;
    }

    .mobile-features-section,
    .mobile-uses-section,
    .mobile-benefits-section,
    .mobile-process-section,
    .mobile-technologies-section,
    .mobile-cta-section {
        padding: 60px 5% 50px;
    }

    .mobile-section-title {
        margin-bottom: 50px;
    }

    .mobile-section-title h2 {
        font-size: 2rem;
    }

    .mobile-section-title p {
        font-size: 1.05rem;
    }

    .mobile-features-grid {
        margin-top: 50px;
        gap: 30px;
    }

    .mobile-feature-card {
        padding: 35px 25px;
        border-radius: 22px;
    }

    .mobile-feature-icon {
        width: 70px;
        height: 70px;
        font-size: 2.4rem;
        border-radius: 18px;
        margin-bottom: 20px;
    }

    .mobile-feature-card h3 {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }

    .mobile-feature-card p {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .mobile-feature-list li {
        font-size: 0.95rem;
        padding: 10px 0;
        padding-left: 28px;
    }

    .mobile-feature-list li::before {
        font-size: 1rem;
    }

    .mobile-uses-grid {
        margin-top: 50px;
        gap: 25px;
    }

    .mobile-use-card {
        padding: 30px 25px;
        border-radius: 20px;
    }

    .mobile-use-icon {
        font-size: 3rem;
        margin-bottom: 18px;
    }

    .mobile-use-card h3 {
        font-size: 1.4rem;
        margin-bottom: 12px;
    }

    .mobile-use-card p {
        font-size: 1rem;
    }

    .mobile-benefits-text h2 {
        font-size: 2rem;
        margin-bottom: 25px;
    }

    .mobile-benefits-text p {
        font-size: 1.05rem;
        margin-bottom: 30px;
    }

    .mobile-benefits-stats {
        margin-top: 40px;
    }

    .mobile-benefit-stat {
        padding: 22px 18px;
        border-radius: 16px;
    }

    .mobile-stat-number {
        font-size: 2.2rem;
        margin-bottom: 10px;
    }

    .mobile-stat-text {
        font-size: 0.95rem;
    }

    .mobile-benefits-img {
        min-height: 350px;
        font-size: 7rem;
        border-radius: 22px;
    }

    .mobile-process-steps {
        margin-top: 50px;
        gap: 25px;
    }

    .mobile-process-step {
        padding: 30px 25px;
        border-radius: 20px;
    }

    .mobile-step-number {
        width: 70px;
        height: 70px;
        font-size: 1.9rem;
        margin-bottom: 20px;
    }

    .mobile-process-step h3 {
        font-size: 1.4rem;
        margin-bottom: 12px;
    }

    .mobile-process-step p {
        font-size: 1rem;
    }

    .mobile-tech-categories {
        margin-top: 50px;
        gap: 30px;
    }

    .mobile-tech-category {
        padding: 30px 25px;
        border-radius: 20px;
    }

    .mobile-tech-category h3 {
        font-size: 1.45rem;
        gap: 12px;
    }

    .mobile-tech-category-icon {
        font-size: 2rem;
    }

    .mobile-tech-tags {
        gap: 10px;
        margin-top: 18px;
    }

    .mobile-tech-tag {
        padding: 8px 16px;
        border-radius: 20px;
        font-size: 12px;
    }

    .mobile-cta-content h2 {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .mobile-cta-content p {
        font-size: 1.05rem;
        margin-bottom: 35px;
    }

    .mobile-cta-buttons {
        margin-top: 40px;
    }

    .mobile-btn {
        padding: 16px 35px;
        font-size: 1rem;
        gap: 10px;
    }

    .mobile-btn-icon {
        width: 20px;
        height: 20px;
        font-size: 13px;
    }

    /* Hide all floating app icons on mobile */
    .mobile-app-icon {
        display: none;
    }
}

/* Extra Small Devices (360px and below) */
@media screen and (max-width: 360px) {
    .mobile-service-badge {
        font-size: 11px;
        padding: 8px 18px;
    }

    .mobile-hero-title {
        font-size: 1.9rem;
    }

    .mobile-hero-subtitle {
        font-size: 0.98rem;
    }

    .mobile-platform-item {
        min-width: 130px;
        padding: 20px 22px;
    }

    .mobile-platform-icon {
        font-size: 2.2rem;
    }

    .mobile-platform-name {
        font-size: 0.95rem;
    }

    .mobile-section-title h2 {
        font-size: 1.75rem;
    }

    .mobile-section-title p {
        font-size: 0.98rem;
    }

    .mobile-feature-card {
        padding: 30px 20px;
    }

    .mobile-feature-icon {
        width: 65px;
        height: 65px;
        font-size: 2.2rem;
        border-radius: 16px;
    }

    .mobile-feature-card h3 {
        font-size: 1.45rem;
    }

    .mobile-feature-card p {
        font-size: 0.95rem;
    }

    .mobile-feature-list li {
        font-size: 0.9rem;
        padding-left: 25px;
    }

    .mobile-use-card {
        padding: 25px 20px;
    }

    .mobile-use-icon {
        font-size: 2.8rem;
    }

    .mobile-use-card h3 {
        font-size: 1.3rem;
    }

    .mobile-use-card p {
        font-size: 0.95rem;
    }

    .mobile-benefits-text h2 {
        font-size: 1.8rem;
    }

    .mobile-benefits-text p {
        font-size: 1rem;
    }

    .mobile-benefit-stat {
        padding: 20px 15px;
    }

    .mobile-stat-number {
        font-size: 2rem;
    }

    .mobile-stat-text {
        font-size: 0.9rem;
    }

    .mobile-benefits-img {
        min-height: 300px;
        font-size: 6rem;
    }

    .mobile-process-step {
        padding: 25px 20px;
    }

    .mobile-step-number {
        width: 65px;
        height: 65px;
        font-size: 1.7rem;
        margin-bottom: 18px;
    }

    .mobile-process-step h3 {
        font-size: 1.3rem;
    }

    .mobile-process-step p {
        font-size: 0.95rem;
    }

    .mobile-tech-category {
        padding: 25px 20px;
    }

    .mobile-tech-category h3 {
        font-size: 1.35rem;
        gap: 10px;
    }

    .mobile-tech-category-icon {
        font-size: 1.8rem;
    }

    .mobile-tech-tag {
        padding: 7px 14px;
        font-size: 11px;
    }

    .mobile-cta-content h2 {
        font-size: 1.8rem;
    }

    .mobile-cta-content p {
        font-size: 1rem;
    }

    .mobile-btn {
        padding: 14px 30px;
        font-size: 0.95rem;
    }

    .mobile-btn-icon {
        width: 18px;
        height: 18px;
        font-size: 12px;
    }
}

/* Ultra Small Devices (320px and below) */
@media screen and (max-width: 320px) {
    .mobile-service-badge {
        font-size: 10px;
        padding: 7px 16px;
    }

    .mobile-hero-section {
        padding: 50px 4% 40px;
    }

    .mobile-hero-title {
        font-size: 1.7rem;
        letter-spacing: -0.5px;
    }

    .mobile-hero-subtitle {
        font-size: 0.92rem;
    }

    .mobile-platform-showcase {
        gap: 12px;
        margin: 30px 0;
    }

    .mobile-platform-item {
        min-width: 120px;
        padding: 18px 20px;
        border-radius: 18px;
    }

    .mobile-platform-icon {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .mobile-platform-name {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }

    .mobile-platform-desc {
        font-size: 0.8rem;
    }

    .mobile-features-section,
    .mobile-uses-section,
    .mobile-benefits-section,
    .mobile-process-section,
    .mobile-technologies-section,
    .mobile-cta-section {
        padding: 50px 4% 40px;
    }

    .mobile-section-title {
        margin-bottom: 40px;
    }

    .mobile-section-title h2 {
        font-size: 1.6rem;
    }

    .mobile-section-title p {
        font-size: 0.92rem;
    }

    .mobile-features-grid {
        margin-top: 40px;
        gap: 25px;
    }

    .mobile-feature-card {
        padding: 25px 18px;
        border-radius: 20px;
    }

    .mobile-feature-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
        border-radius: 14px;
        margin-bottom: 18px;
    }

    .mobile-feature-card h3 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }

    .mobile-feature-card p {
        font-size: 0.9rem;
        margin-bottom: 18px;
    }

    .mobile-feature-list {
        margin-bottom: 25px;
    }

    .mobile-feature-list li {
        font-size: 0.85rem;
        padding: 8px 0;
        padding-left: 22px;
    }

    .mobile-feature-list li::before {
        font-size: 0.95rem;
        top: 6px;
    }

    .mobile-feature-list li:hover {
        padding-left: 28px;
        padding-right: 10px;
    }

    .mobile-uses-grid {
        margin-top: 40px;
        gap: 20px;
    }

    .mobile-use-card {
        padding: 22px 18px;
        border-radius: 18px;
    }

    .mobile-use-icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .mobile-use-card h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .mobile-use-card p {
        font-size: 0.9rem;
    }

    .mobile-benefits-text h2 {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }

    .mobile-benefits-text p {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }

    .mobile-benefits-stats {
        margin-top: 35px;
        gap: 15px;
    }

    .mobile-benefit-stat {
        padding: 18px 12px;
        border-radius: 14px;
    }

    .mobile-stat-number {
        font-size: 1.8rem;
        margin-bottom: 8px;
    }

    .mobile-stat-text {
        font-size: 0.85rem;
    }

    .mobile-benefits-img {
        min-height: 280px;
        font-size: 5.5rem;
        border-radius: 20px;
    }

    .mobile-process-steps {
        margin-top: 40px;
        gap: 20px;
    }

    .mobile-process-step {
        padding: 22px 18px;
        border-radius: 18px;
    }

    .mobile-step-number {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
        margin-bottom: 15px;
    }

    .mobile-process-step h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .mobile-process-step p {
        font-size: 0.9rem;
    }

    .mobile-tech-categories {
        margin-top: 40px;
        gap: 25px;
    }

    .mobile-tech-category {
        padding: 22px 18px;
        border-radius: 18px;
    }

    .mobile-tech-category h3 {
        font-size: 1.25rem;
        gap: 8px;
        margin-bottom: 16px;
    }

    .mobile-tech-category-icon {
        font-size: 1.6rem;
    }

    .mobile-tech-tags {
        gap: 8px;
        margin-top: 15px;
    }

    .mobile-tech-tag {
        padding: 6px 12px;
        border-radius: 18px;
        font-size: 10px;
    }

    .mobile-cta-content h2 {
        font-size: 1.6rem;
        margin-bottom: 18px;
    }

    .mobile-cta-content p {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }

    .mobile-cta-buttons {
        margin-top: 35px;
        gap: 15px;
    }

    .mobile-btn {
        padding: 13px 25px;
        font-size: 0.9rem;
        gap: 8px;
        border-radius: 10px;
    }

    .mobile-btn-icon {
        width: 16px;
        height: 16px;
        font-size: 11px;
    }
}











        /* Digital Page */

 

        .digital-marketing-page {
            font-family: 'Comic Neue', cursive;
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
            color: #1e293b;
            overflow-x: hidden;
            position: relative;
            min-height: 100vh;
        }

        /* Enhanced Digital Grid Background */
        .digital-grid-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(215, 172, 56, 0.08) 1px, transparent 1px),
                linear-gradient(90deg, rgba(215, 172, 56, 0.08) 1px, transparent 1px),
                linear-gradient(rgba(10, 31, 68, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(10, 31, 68, 0.03) 1px, transparent 1px);
            background-size: 60px 60px, 60px 60px, 20px 20px, 20px 20px;
            z-index: -3;
            animation: digitalGridPulse 25s linear infinite;
        }

        @keyframes digitalGridPulse {
            0% { transform: translate(0, 0) scale(1); opacity: 0.8; }
            50% { transform: translate(30px, 30px) scale(1.02); opacity: 1; }
            100% { transform: translate(60px, 60px) scale(1); opacity: 0.8; }
        }

        /* Digital Marketing Pattern Background */
        .digital-pattern-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -2;
            opacity: 0.05;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 400'%3E%3Cdefs%3E%3ClinearGradient id='digitalGrad' x1='0%25' y1='0%25' x2='100%25' y2='100%25'%3E%3Cstop offset='0%25' style='stop-color:%23d7ac38;stop-opacity:1' /%3E%3Cstop offset='50%25' style='stop-color:%23d5ac73;stop-opacity:0.8' /%3E%3Cstop offset='100%25' style='stop-color:%230a1f44;stop-opacity:1' /%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath d='M200 50L350 200L200 350L50 200Z' fill='none' stroke='url(%23digitalGrad)' stroke-width='3'/%3E%3Ccircle cx='200' cy='200' r='80' fill='none' stroke='url(%23digitalGrad)' stroke-width='2'/%3E%3Cpath d='M120 120h160v160H120z' fill='none' stroke='%23d7ac38' stroke-width='1.5' opacity='0.7'/%3E%3Ccircle cx='200' cy='200' r='12' fill='%23d7ac38'/%3E%3Cpath d='M200 50v300M50 200h300' stroke='url(%23digitalGrad)' stroke-width='1' opacity='0.6'/%3E%3C/svg%3E");
            background-size: 300px 300px;
            animation: digitalPatternFlow 12s ease-in-out infinite;
        }

        @keyframes digitalPatternFlow {
            0%, 100% { opacity: 0.05; transform: rotate(0deg) scale(1); }
            50% { opacity: 0.1; transform: rotate(2deg) scale(1.03); }
        }

        /* Service Badge */
        .digital-service-badge {
            display: inline-block;
            background: linear-gradient(135deg, rgba(215, 172, 56, 0.18), rgba(213, 172, 115, 0.12));
            border: 1px solid rgba(215, 172, 56, 0.35);
            padding: 14px 32px;
            border-radius: 40px;
            font-size: 14px;
            font-weight: 700;
            color: #d7ac38;
            margin-bottom: 30px;
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(20px);
            box-shadow: 0 8px 30px rgba(215, 172, 56, 0.25);
            animation: digitalBadgeGlow 5s ease-in-out infinite;
            text-transform: uppercase;
            letter-spacing: 1.2px;
        }

        .digital-service-badge::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(215, 172, 56, 0.4), transparent);
            animation: digitalBadgeShimmer 4s ease-in-out infinite;
        }

        @keyframes digitalBadgeShimmer {
            0% { left: -100%; }
            50%, 100% { left: 100%; }
        }

        @keyframes digitalBadgeGlow {
            0%, 100% {
                box-shadow: 0 8px 30px rgba(215, 172, 56, 0.25);
                border-color: rgba(215, 172, 56, 0.35);
            }
            50% {
                box-shadow: 0 12px 40px rgba(215, 172, 56, 0.4);
                border-color: rgba(215, 172, 56, 0.5);
            }
        }

        /* Hero Section */
        .digital-hero-section {
            padding: 100px 5% 80px;
            position: relative;
            overflow: hidden;
            min-height: 90vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }

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

        .digital-float-icon {
            position: absolute;
            font-size: 24px;
            color: rgba(215, 172, 56, 0.4);
            background: rgba(255, 255, 255, 0.15);
            padding: 20px;
            border-radius: 50%;
            border: 1px solid rgba(215, 172, 56, 0.2);
            backdrop-filter: blur(15px);
        }

        .digital-float-icon:nth-child(1) {
            top: 20%;
            left: 10%;
            animation: digitalFloatBounce1 6s ease-in-out infinite;
        }

        .digital-float-icon:nth-child(2) {
            top: 15%;
            right: 15%;
            animation: digitalFloatBounce2 7s ease-in-out infinite 1s;
        }

        .digital-float-icon:nth-child(3) {
            bottom: 25%;
            left: 8%;
            animation: digitalFloatBounce1 8s ease-in-out infinite 2s;
        }

        .digital-float-icon:nth-child(4) {
            bottom: 30%;
            right: 12%;
            animation: digitalFloatBounce2 6s ease-in-out infinite 3s;
        }

        .digital-float-icon:nth-child(5) {
            top: 50%;
            left: 5%;
            animation: digitalFloatBounce1 7s ease-in-out infinite 4s;
        }

        .digital-float-icon:nth-child(6) {
            top: 60%;
            right: 8%;
            animation: digitalFloatBounce2 8s ease-in-out infinite 5s;
        }

        @keyframes digitalFloatBounce1 {
            0%, 100% {
                transform: translateY(0) rotate(0deg) scale(1);
                opacity: 0.4;
            }
            50% {
                transform: translateY(-25px) rotate(5deg) scale(1.1);
                opacity: 0.8;
            }
        }

        @keyframes digitalFloatBounce2 {
            0%, 100% {
                transform: translateY(0) rotate(0deg) scale(1);
                opacity: 0.4;
            }
            50% {
                transform: translateY(-20px) rotate(-5deg) scale(1.05);
                opacity: 0.7;
            }
        }

        .digital-hero-content {
            text-align: center;
            z-index: 2;
            max-width: 1000px;
            padding: 0 20px;
            animation: digitalHeroSlideUp 2.5s ease-out;
        }

        @keyframes digitalHeroSlideUp {
            0% {
                opacity: 0;
                transform: translateY(80px) scale(0.9);
            }
            100% {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .digital-hero-title {
            font-size: 4.8rem;
            font-weight: 900;
            margin-bottom: 30px;
            color: #0f172a;
            line-height: 1.1;
            position: relative;
            letter-spacing: -3px;
        }

        .digital-hero-title .digital-highlight {
            background: linear-gradient(135deg, #d7ac38 0%, #d5ac73 30%, #c9a366 70%, #d7ac38 100%);
            background-size: 400% 400%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            position: relative;
            animation: digitalTextGlow 6s ease-in-out infinite;
        }

        @keyframes digitalTextGlow {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .digital-hero-title .digital-highlight::after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 0;
            width: 100%;
            height: 6px;
            background: linear-gradient(90deg, #d7ac38, #d5ac73, #c9a366, #d7ac38);
            background-size: 400% 100%;
            border-radius: 4px;
            animation: digitalUnderlineGlow 5s ease-in-out infinite;
        }

        @keyframes digitalUnderlineGlow {
            0%, 100% { background-position: 0% 50%; opacity: 0.9; }
            50% { background-position: 100% 50%; opacity: 1; }
        }

        .digital-hero-subtitle {
            font-size: 1.6rem;
            margin-bottom: 40px;
            color: #64748b;
            font-weight: 500;
            animation: digitalFadeInUp 2.5s ease-out 0.5s both;
            line-height: 1.7;
        }

        @keyframes digitalFadeInUp {
            0% {
                opacity: 0;
                transform: translateY(50px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .digital-services-showcase {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin: 60px 0;
            animation: digitalFadeInUp 2.5s ease-out 1s both;
            flex-wrap: wrap;
        }

        .digital-service-item {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 1) 100%);
            border: 1px solid rgba(215, 172, 56, 0.25);
            border-radius: 25px;
            padding: 30px 35px;
            text-align: center;
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(30px);
            box-shadow: 0 10px 35px rgba(15, 23, 42, 0.12);
            min-width: 180px;
        }

        .digital-service-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #d7ac38, #d5ac73, #c9a366);
            opacity: 0;
            transition: opacity 0.6s ease;
        }

        .digital-service-item:hover::before {
            opacity: 1;
        }

        .digital-service-item:hover {
            transform: translateY(-15px) scale(1.08);
            background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(248, 250, 252, 1) 100%);
            box-shadow: 0 25px 60px rgba(215, 172, 56, 0.3);
            border-color: rgba(215, 172, 56, 0.4);
        }

        .digital-service-icon {
            font-size: 3.2rem;
            margin-bottom: 18px;
            display: block;
            animation: digitalServicePulse 3s ease-in-out infinite;
        }

        @keyframes digitalServicePulse {
            0%, 100% { transform: scale(1) rotate(0deg); }
            50% { transform: scale(1.1) rotate(2deg); }
        }

        .digital-service-name {
            font-size: 1.2rem;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 10px;
        }

        .digital-service-desc {
            font-size: 1rem;
            color: #64748b;
            font-weight: 500;
        }

        /* Services Types Section */
        .digital-types-section {
            padding: 120px 5% 100px;
            background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
            position: relative;
        }

        .digital-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .digital-section-title {
            text-align: center;
            margin-bottom: 90px;
        }

        .digital-section-title h2 {
            font-size: 4rem;
            font-weight: 900;
            color: #0f172a;
            margin-bottom: 28px;
            position: relative;
        }

        .digital-section-title h2 .digital-highlight {
            background: linear-gradient(135deg, #d7ac38 0%, #d5ac73 50%, #c9a366 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .digital-section-title p {
            font-size: 1.5rem;
            color: #64748b;
            max-width: 750px;
            margin: 0 auto;
            font-weight: 500;
            line-height: 1.7;
        }

        .digital-types-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 60px;
            margin-top: 100px;
        }

        .digital-type-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 1) 100%);
            border: 1px solid rgba(215, 172, 56, 0.18);
            border-radius: 32px;
            padding:20px;
            transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(30px);
            box-shadow: 0 12px 55px rgba(15, 23, 42, 0.1);
        }

        .digital-type-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 6px;
            background: linear-gradient(90deg, #d7ac38, #d5ac73, #c9a366);
            opacity: 0;
            transition: opacity 0.7s ease;
        }

        .digital-type-card:hover::before {
            opacity: 1;
        }

        .digital-type-card:hover {
            transform: translateY(-18px) scale(1.03);
            box-shadow: 0 35px 90px rgba(215, 172, 56, 0.3);
            border-color: rgba(215, 172, 56, 0.35);
        }

        .digital-type-icon {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, #d7ac38 0%, #d5ac73 100%);
            border-radius: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3.5rem;
            margin-bottom: 40px;
            position: relative;
            box-shadow: 0 15px 45px rgba(215, 172, 56, 0.35);
            animation: digitalTypeIconRotate 4s ease-in-out infinite;
        }

        @keyframes digitalTypeIconRotate {
            0%, 100% {
                box-shadow: 0 15px 45px rgba(215, 172, 56, 0.35);
                transform: rotate(0deg);
            }
            50% {
                box-shadow: 0 20px 55px rgba(215, 172, 56, 0.45);
                transform: rotate(5deg);
            }
        }

        .digital-type-card h3 {
            font-size: 2.2rem;
            font-weight: 800;
            color: #0f172a;
            margin-bottom: 22px;
            line-height: 1.3;
        }

        .digital-type-features {
            list-style: none;
        }

        .digital-type-features li {
            padding: 15px 0;
            color: #475569;
            position: relative;
            padding-left: 40px;
            font-weight: 600;
            font-size: 1.15rem;
            transition: all 0.4s ease;
        }

        .digital-type-features li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: #d7ac38;
            font-weight: 900;
            font-size: 1.4rem;
            top: 12px;
        }

        .digital-type-features li:hover {
            color: #1e293b;
            transform: translateX(15px);
        }

        /* Benefits Section */
        .digital-benefits-section {
            padding: 120px 5% 100px;
            background: linear-gradient(135deg, #0a1f44 0%, #1e3a5f 50%, #2d4a6b 100%);
            position: relative;
            color: #ffffff;
        }

        .digital-benefits-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 120px;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }

        .digital-benefits-text h2 {
            font-size: 3.8rem;
            font-weight: 900;
            margin-bottom: 40px;
            color: #ffffff;
        }

        .digital-benefits-text h2 .digital-highlight {
            background: linear-gradient(135deg, #d7ac38 0%, #d5ac73 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .digital-benefits-text p {
            font-size: 1.4rem;
            line-height: 1.9;
            margin-bottom: 40px;
            color: rgba(255, 255, 255, 0.92);
            font-weight: 500;
        }

        .digital-benefits-stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-top: 60px;
        }

        .digital-benefit-stat {
            background: rgba(215, 172, 56, 0.12);
            border: 1px solid rgba(215, 172, 56, 0.3);
            border-radius: 25px;
            padding: 35px 30px;
            text-align: center;
            transition: all 0.6s ease;
            backdrop-filter: blur(20px);
        }

        .digital-benefit-stat:hover {
            background: rgba(215, 172, 56, 0.18);
            transform: translateY(-10px);
            box-shadow: 0 18px 50px rgba(215, 172, 56, 0.3);
        }

        .digital-stat-number {
            font-size: 3.5rem;
            font-weight: 900;
            color: #d7ac38;
            display: block;
            margin-bottom: 15px;
        }

        .digital-stat-text {
            font-size: 1.2rem;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.95);
        }

        .digital-benefits-visual {
            position: relative;
        }

        .digital-benefits-img {
            width: 100%;
            border-radius: 32px;
            background: linear-gradient(135deg, rgba(215, 172, 56, 0.25) 0%, rgba(213, 172, 115, 0.15) 100%);
            min-height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12rem;
            color: rgba(215, 172, 56, 0.7);
            border: 2px solid rgba(215, 172, 56, 0.35);
            box-shadow: 0 25px 100px rgba(0, 0, 0, 0.5);
            position: relative;
            overflow: hidden;
        }

        .digital-benefits-img::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent 30%, rgba(215, 172, 56, 0.15) 50%, transparent 70%);
            animation: digitalBenefitsShimmer 4s ease-in-out infinite;
        }

        @keyframes digitalBenefitsShimmer {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        /* Strategy Section */
        .digital-strategy-section {
            padding: 120px 5% 100px;
            background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
            position: relative;
        }

        .digital-strategy-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 50px;
            margin-top: 100px;
        }

        .digital-strategy-step {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 1) 100%);
            border: 1px solid rgba(215, 172, 56, 0.18);
            border-radius: 28px;
            padding: 45px 40px;
            text-align: center;
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            box-shadow: 0 10px 45px rgba(15, 23, 42, 0.1);
        }

        .digital-strategy-step::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #d7ac38, #d5ac73, #c9a366);
            opacity: 0;
            transition: opacity 0.6s ease;
        }

        .digital-strategy-step:hover::before {
            opacity: 1;
        }

        .digital-strategy-step:hover {
            transform: translateY(-15px);
            box-shadow: 0 30px 70px rgba(215, 172, 56, 0.25);
            border-color: rgba(215, 172, 56, 0.3);
        }

        .digital-step-number {
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, #d7ac38 0%, #d5ac73 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            font-weight: 900;
            color: #ffffff;
            margin: 0 auto 30px;
            box-shadow: 0 12px 40px rgba(215, 172, 56, 0.4);
        }

        .digital-strategy-step h3 {
            font-size: 1.8rem;
            font-weight: 800;
            color: #0f172a;
            margin-bottom: 18px;
        }

        .digital-strategy-step p {
            color: #64748b;
            font-size: 1.2rem;
            line-height: 1.7;
            font-weight: 500;
        }

        /* Performance Marketing Section */
        .digital-performance-section {
            padding: 120px 5% 100px;
            background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
            position: relative;
        }

        .digital-performance-categories {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 60px;
            margin-top: 100px;
        }

        .digital-performance-category {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 1) 100%);
            border: 1px solid rgba(215, 172, 56, 0.18);
            border-radius: 28px;
            padding: 50px 45px;
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            backdrop-filter: blur(25px);
            box-shadow: 0 10px 45px rgba(15, 23, 42, 0.1);
        }

        .digital-performance-category::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #d7ac38, #d5ac73, #c9a366);
            opacity: 0;
            transition: opacity 0.6s ease;
        }

        .digital-performance-category:hover::before {
            opacity: 1;
        }

        .digital-performance-category:hover {
            transform: translateY(-15px);
            box-shadow: 0 30px 70px rgba(215, 172, 56, 0.25);
            border-color: rgba(215, 172, 56, 0.3);
        }

        .digital-performance-category h3 {
            font-size: 2rem;
            font-weight: 800;
            color: #0f172a;
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            gap: 18px;
        }

        .digital-performance-icon {
            font-size: 2.8rem;
        }

        .digital-performance-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 25px;
        }

        .digital-performance-tag {
            background: linear-gradient(135deg, rgba(215, 172, 56, 0.15), rgba(213, 172, 115, 0.1));
            border: 1px solid rgba(215, 172, 56, 0.3);
            padding: 12px 25px;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 600;
            color: #d7ac38;
            transition: all 0.4s ease;
        }

        .digital-performance-tag:hover {
            background: linear-gradient(135deg, #d7ac38, #d5ac73);
            color: #ffffff;
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(215, 172, 56, 0.35);
        }

        /* CTA Section */
        .digital-cta-section {
            padding: 120px 5% 100px;
            background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
            position: relative;
            color: #1e293b;
            text-align: center;
        }

        .digital-cta-content {
            max-width: 850px;
            margin: 0 auto;
        }

        .digital-cta-content h2 {
            font-size: 3.8rem;
            font-weight: 900;
            margin-bottom: 30px;
            color: #0f172a;
        }

        .digital-cta-content h2 .digital-highlight {
            background: linear-gradient(135deg, #d7ac38 0%, #d5ac73 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .digital-cta-content p {
            font-size: 1.4rem;
            line-height: 1.8;
            margin-bottom: 50px;
            color: #64748b;
            font-weight: 500;
        }

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

        .digital-btn {
            padding: 20px 45px;
            border: none;
            border-radius: 15px;
            font-size: 1.2rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 15px;
            font-family: 'Comic Neue', cursive;
        }

        .digital-btn-primary {
            background: linear-gradient(135deg, #d7ac38 0%, #d5ac73 100%);
            color: #0a1f44;
            box-shadow: 0 12px 40px rgba(215, 172, 56, 0.4);
            position: relative;
        }

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

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

        .digital-btn-primary:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 70px rgba(215, 172, 56, 0.6);
            background: linear-gradient(135deg, #e8bd49 0%, #e6bd84 100%);
        }

        .digital-btn-secondary {
            background: rgba(215, 172, 56, 0.1);
            color: #d7ac38;
            border: 2px solid rgba(215, 172, 56, 0.5);
            backdrop-filter: blur(25px);
            box-shadow: 0 12px 40px rgba(215, 172, 56, 0.2);
        }

        .digital-btn-secondary:hover {
            background: rgba(215, 172, 56, 0.2);
            border-color: #d7ac38;
            transform: translateY(-8px);
            box-shadow: 0 25px 70px rgba(215, 172, 56, 0.4);
            color: #0f172a;
        }

        .digital-btn-icon {
            width: 25px;
            height: 25px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.25);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
        }

        /* ============================================
   DIGITAL MARKETING PAGE - RESPONSIVE CSS
   ============================================ */

/* Large Tablets & Small Laptops (1024px and below) */
@media screen and (max-width: 1024px) {
    .digital-hero-title {
        font-size: 4rem;
    }

    .digital-section-title h2 {
        font-size: 3.4rem;
    }

    .digital-types-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 45px;
    }

    .digital-benefits-content {
        grid-template-columns: 1fr;
        gap: 70px;
    }

    .digital-benefits-img {
        min-height: 500px;
        font-size: 10rem;
    }

    .digital-benefits-text h2 {
        font-size: 3.2rem;
    }

    .digital-cta-content h2 {
        font-size: 3.2rem;
    }

    .digital-strategy-steps {
        grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
        gap: 40px;
    }

    .digital-performance-categories {
        grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
        gap: 45px;
    }
}

/* Tablets (768px and below) */
@media screen and (max-width: 768px) {
    .digital-hero-section {
        padding: 80px 5% 60px;
        min-height: auto;
    }

    .digital-hero-title {
        font-size: 3.2rem;
        letter-spacing: -2px;
    }

    .digital-hero-title .digital-highlight::after {
        height: 4px;
        bottom: -8px;
    }

    .digital-hero-subtitle {
        font-size: 1.3rem;
    }

    .digital-services-showcase {
        gap: 20px;
        margin: 45px 0;
    }

    .digital-service-item {
        min-width: 160px;
        padding: 25px 30px;
    }

    .digital-service-icon {
        font-size: 2.8rem;
        margin-bottom: 15px;
    }

    .digital-service-name {
        font-size: 1.1rem;
    }

    .digital-service-desc {
        font-size: 0.95rem;
    }

    .digital-types-section,
    .digital-benefits-section,
    .digital-strategy-section,
    .digital-performance-section,
    .digital-cta-section {
        padding: 80px 5% 60px;
    }

    .digital-section-title {
        margin-bottom: 70px;
    }

    .digital-section-title h2 {
        font-size: 2.8rem;
    }

    .digital-section-title p {
        font-size: 1.25rem;
    }

    .digital-types-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 70px;
    }

    .digital-type-card {
        padding: 40px 35px;
        border-radius: 28px;
    }

    .digital-type-icon {
        width: 85px;
        height: 85px;
        font-size: 3rem;
        border-radius: 24px;
        margin-bottom: 30px;
    }

    .digital-type-card h3 {
        font-size: 1.9rem;
    }

    .digital-type-features li {
        font-size: 1.05rem;
        padding-left: 35px;
    }

    .digital-benefits-text h2 {
        font-size: 2.8rem;
    }

    .digital-benefits-text p {
        font-size: 1.25rem;
    }

    .digital-benefits-stats {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 50px;
    }

    .digital-benefit-stat {
        padding: 30px 25px;
    }

    .digital-stat-number {
        font-size: 3rem;
    }

    .digital-stat-text {
        font-size: 1.1rem;
    }

    .digital-benefits-img {
        min-height: 420px;
        font-size: 8rem;
    }

    .digital-strategy-steps {
        grid-template-columns: 1fr;
        gap: 35px;
        margin-top: 70px;
    }

    .digital-strategy-step {
        padding: 40px 35px;
    }

    .digital-step-number {
        width: 80px;
        height: 80px;
        font-size: 2.2rem;
    }

    .digital-strategy-step h3 {
        font-size: 1.6rem;
    }

    .digital-strategy-step p {
        font-size: 1.1rem;
    }

    .digital-performance-categories {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 70px;
    }

    .digital-performance-category {
        padding: 40px 35px;
    }

    .digital-performance-category h3 {
        font-size: 1.8rem;
    }

    .digital-performance-icon {
        font-size: 2.5rem;
    }

    .digital-cta-content h2 {
        font-size: 2.8rem;
    }

    .digital-cta-content p {
        font-size: 1.25rem;
    }

    .digital-cta-buttons {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .digital-btn {
        width: 100%;
        max-width: 380px;
        justify-content: center;
    }

    /* Hide some floating icons on tablets */
    .digital-float-icon:nth-child(4),
    .digital-float-icon:nth-child(5),
    .digital-float-icon:nth-child(6) {
        display: none;
    }
}

/* Mobile Devices (480px and below) */
@media screen and (max-width: 480px) {
    .digital-service-badge {
        font-size: 12px;
        padding: 11px 24px;
        letter-spacing: 0.8px;
    }

    .digital-hero-section {
        padding: 60px 5% 50px;
    }

    .digital-hero-title {
        font-size: 2.4rem;
        letter-spacing: -1.2px;
    }

    .digital-hero-title .digital-highlight::after {
        height: 3px;
        bottom: -6px;
    }

    .digital-hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 35px;
    }

    .digital-services-showcase {
        gap: 15px;
        margin: 40px 0;
    }

    .digital-service-item {
        min-width: 145px;
        padding: 22px 25px;
        border-radius: 20px;
    }

    .digital-service-icon {
        font-size: 2.5rem;
        margin-bottom: 12px;
    }

    .digital-service-name {
        font-size: 1rem;
    }

    .digital-service-desc {
        font-size: 0.9rem;
    }

    .digital-types-section,
    .digital-benefits-section,
    .digital-strategy-section,
    .digital-performance-section,
    .digital-cta-section {
        padding: 60px 5% 50px;
    }

    .digital-section-title {
        margin-bottom: 55px;
    }

    .digital-section-title h2 {
        font-size: 2.2rem;
    }

    .digital-section-title p {
        font-size: 1.1rem;
    }

    .digital-types-grid {
        margin-top: 55px;
        gap: 35px;
    }

    .digital-type-card {
        padding: 35px 28px;
        border-radius: 24px;
    }

    .digital-type-icon {
        width: 75px;
        height: 75px;
        font-size: 2.6rem;
        border-radius: 20px;
        margin-bottom: 25px;
    }

    .digital-type-card h3 {
        font-size: 1.7rem;
        margin-bottom: 18px;
    }

    .digital-type-features li {
        font-size: 1rem;
        padding: 12px 0;
        padding-left: 32px;
    }

    .digital-type-features li::before {
        font-size: 1.2rem;
        top: 10px;
    }

    .digital-benefits-text h2 {
        font-size: 2.2rem;
        margin-bottom: 30px;
    }

    .digital-benefits-text p {
        font-size: 1.1rem;
        margin-bottom: 35px;
    }

    .digital-benefits-stats {
        margin-top: 45px;
    }

    .digital-benefit-stat {
        padding: 28px 22px;
        border-radius: 20px;
    }

    .digital-stat-number {
        font-size: 2.5rem;
        margin-bottom: 12px;
    }

    .digital-stat-text {
        font-size: 1rem;
    }

    .digital-benefits-img {
        min-height: 370px;
        font-size: 7rem;
        border-radius: 25px;
    }

    .digital-strategy-steps {
        margin-top: 55px;
        gap: 30px;
    }

    .digital-strategy-step {
        padding: 35px 28px;
        border-radius: 24px;
    }

    .digital-step-number {
        width: 75px;
        height: 75px;
        font-size: 2rem;
        margin-bottom: 25px;
    }

    .digital-strategy-step h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .digital-strategy-step p {
        font-size: 1.05rem;
    }

    .digital-performance-categories {
        margin-top: 55px;
        gap: 35px;
    }

    .digital-performance-category {
        padding: 35px 28px;
        border-radius: 24px;
    }

    .digital-performance-category h3 {
        font-size: 1.6rem;
        gap: 15px;
    }

    .digital-performance-icon {
        font-size: 2.2rem;
    }

    .digital-performance-tags {
        gap: 12px;
        margin-top: 20px;
    }

    .digital-performance-tag {
        padding: 10px 20px;
        border-radius: 25px;
        font-size: 13px;
    }

    .digital-cta-content h2 {
        font-size: 2.2rem;
        margin-bottom: 25px;
    }

    .digital-cta-content p {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }

    .digital-cta-buttons {
        margin-top: 45px;
    }

    .digital-btn {
        padding: 17px 38px;
        font-size: 1.05rem;
        gap: 12px;
    }

    .digital-btn-icon {
        width: 22px;
        height: 22px;
        font-size: 14px;
    }

    /* Hide all floating icons on mobile */
    .digital-float-icon {
        display: none;
    }
}

/* Extra Small Devices (360px and below) */
@media screen and (max-width: 360px) {
    .digital-service-badge {
        font-size: 11px;
        padding: 9px 20px;
        letter-spacing: 0.6px;
    }

    .digital-hero-title {
        font-size: 2.1rem;
    }

    .digital-hero-subtitle {
        font-size: 1.02rem;
    }

    .digital-service-item {
        min-width: 135px;
        padding: 20px 22px;
    }

    .digital-service-icon {
        font-size: 2.3rem;
    }

    .digital-service-name {
        font-size: 0.95rem;
    }

    .digital-section-title h2 {
        font-size: 1.95rem;
    }

    .digital-section-title p {
        font-size: 1.02rem;
    }

    .digital-type-card {
        padding: 30px 24px;
    }

    .digital-type-icon {
        width: 70px;
        height: 70px;
        font-size: 2.4rem;
        border-radius: 18px;
    }

    .digital-type-card h3 {
        font-size: 1.55rem;
    }

    .digital-type-features li {
        font-size: 0.95rem;
        padding-left: 28px;
    }

    .digital-benefits-text h2 {
        font-size: 1.95rem;
    }

    .digital-benefits-text p {
        font-size: 1.02rem;
    }

    .digital-benefit-stat {
        padding: 24px 18px;
    }

    .digital-stat-number {
        font-size: 2.2rem;
    }

    .digital-stat-text {
        font-size: 0.95rem;
    }

    .digital-benefits-img {
        min-height: 330px;
        font-size: 6.5rem;
    }

    .digital-strategy-step {
        padding: 30px 24px;
    }

    .digital-step-number {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin-bottom: 22px;
    }

    .digital-strategy-step h3 {
        font-size: 1.4rem;
    }

    .digital-strategy-step p {
        font-size: 1rem;
    }

    .digital-performance-category {
        padding: 30px 24px;
    }

    .digital-performance-category h3 {
        font-size: 1.5rem;
        gap: 12px;
    }

    .digital-performance-icon {
        font-size: 2rem;
    }

    .digital-performance-tag {
        padding: 9px 18px;
        font-size: 12px;
    }

    .digital-cta-content h2 {
        font-size: 1.95rem;
    }

    .digital-cta-content p {
        font-size: 1.02rem;
    }

    .digital-btn {
        padding: 15px 32px;
        font-size: 1rem;
    }

    .digital-btn-icon {
        width: 20px;
        height: 20px;
        font-size: 13px;
    }
}

/* Ultra Small Devices (320px and below) */
@media screen and (max-width: 320px) {
    .digital-service-badge {
        font-size: 10px;
        padding: 8px 18px;
        letter-spacing: 0.5px;
    }

    .digital-hero-section {
        padding: 50px 4% 40px;
    }

    .digital-hero-title {
        font-size: 1.85rem;
        letter-spacing: -0.8px;
    }

    .digital-hero-subtitle {
        font-size: 0.95rem;
    }

    .digital-services-showcase {
        gap: 12px;
        margin: 35px 0;
    }

    .digital-service-item {
        min-width: 125px;
        padding: 18px 20px;
        border-radius: 18px;
    }

    .digital-service-icon {
        font-size: 2.1rem;
        margin-bottom: 10px;
    }

    .digital-service-name {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }

    .digital-service-desc {
        font-size: 0.82rem;
    }

    .digital-types-section,
    .digital-benefits-section,
    .digital-strategy-section,
    .digital-performance-section,
    .digital-cta-section {
        padding: 50px 4% 40px;
    }

    .digital-section-title {
        margin-bottom: 45px;
    }

    .digital-section-title h2 {
        font-size: 1.75rem;
    }

    .digital-section-title p {
        font-size: 0.95rem;
    }

    .digital-types-grid {
        margin-top: 45px;
        gap: 28px;
    }

    .digital-type-card {
        padding: 28px 20px;
        border-radius: 22px;
    }

    .digital-type-icon {
        width: 65px;
        height: 65px;
        font-size: 2.2rem;
        border-radius: 16px;
        margin-bottom: 22px;
    }

    .digital-type-card h3 {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }

    .digital-type-features li {
        font-size: 0.9rem;
        padding: 10px 0;
        padding-left: 26px;
    }

    .digital-type-features li::before {
        font-size: 1.1rem;
        top: 8px;
    }

    .digital-benefits-text h2 {
        font-size: 1.75rem;
        margin-bottom: 25px;
    }

    .digital-benefits-text p {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }

    .digital-benefits-stats {
        margin-top: 40px;
        gap: 18px;
    }

    .digital-benefit-stat {
        padding: 22px 16px;
        border-radius: 18px;
    }

    .digital-stat-number {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .digital-stat-text {
        font-size: 0.9rem;
    }

    .digital-benefits-img {
        min-height: 300px;
        font-size: 6rem;
        border-radius: 22px;
    }

    .digital-strategy-steps {
        margin-top: 45px;
        gap: 25px;
    }

    .digital-strategy-step {
        padding: 28px 20px;
        border-radius: 20px;
    }

    .digital-step-number {
        width: 65px;
        height: 65px;
        font-size: 1.7rem;
        margin-bottom: 20px;
    }

    .digital-strategy-step h3 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }

    .digital-strategy-step p {
        font-size: 0.95rem;
    }

    .digital-performance-categories {
        margin-top: 45px;
        gap: 28px;
    }

    .digital-performance-category {
        padding: 28px 20px;
        border-radius: 20px;
    }

    .digital-performance-category h3 {
        font-size: 1.4rem;
        gap: 10px;
        margin-bottom: 20px;
    }

    .digital-performance-icon {
        font-size: 1.8rem;
    }

    .digital-performance-tags {
        gap: 10px;
        margin-top: 18px;
    }

    .digital-performance-tag {
        padding: 8px 16px;
        border-radius: 20px;
        font-size: 11px;
    }

    .digital-cta-content h2 {
        font-size: 1.75rem;
        margin-bottom: 20px;
    }

    .digital-cta-content p {
        font-size: 0.95rem;
        margin-bottom: 35px;
    }

    .digital-cta-buttons {
        margin-top: 40px;
        gap: 18px;
    }

    .digital-btn {
        padding: 14px 28px;
        font-size: 0.95rem;
        gap: 10px;
        border-radius: 12px;
    }

    .digital-btn-icon {
        width: 18px;
        height: 18px;
        font-size: 12px;
    }
}
      

       

















       

        
       /* Graphic & UI/UX Design */

        .design-service-page {
            font-family: 'Comic Neue', cursive;
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
            color: #1e293b;
            overflow-x: hidden;
            position: relative;
            min-height: 100vh;
        }

        /* Design Grid Background */
        .design-grid-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(215, 172, 56, 0.05) 2px, transparent 2px),
                linear-gradient(90deg, rgba(215, 172, 56, 0.05) 2px, transparent 2px),
                linear-gradient(rgba(10, 31, 68, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(10, 31, 68, 0.03) 1px, transparent 1px);
            background-size: 60px 60px, 60px 60px, 20px 20px, 20px 20px;
            z-index: -3;
            animation: designGridFloat 25s linear infinite;
        }

        @keyframes designGridFloat {
            0% { transform: translate(0, 0) rotate(0deg); }
            100% { transform: translate(60px, 60px) rotate(2deg); }
        }

        /* Creative Pattern Background */
        .design-pattern-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -2;
            opacity: 0.06;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 400'%3E%3Cdefs%3E%3CradialGradient id='designGrad' cx='50%25' cy='50%25' r='50%25'%3E%3Cstop offset='0%25' style='stop-color:%23d7ac38;stop-opacity:0.8' /%3E%3Cstop offset='100%25' style='stop-color:%230a1f44;stop-opacity:0.3' /%3E%3C/radialGradient%3E%3C/defs%3E%3Cpolygon points='200,50 350,150 300,300 100,300 50,150' fill='url(%23designGrad)' stroke='%23d7ac38' stroke-width='3' opacity='0.7'/%3E%3Ccircle cx='200' cy='200' r='80' fill='none' stroke='%230a1f44' stroke-width='2' opacity='0.5'/%3E%3Cpath d='M150 150 L250 150 L250 250 L150 250 Z' fill='none' stroke='%23d7ac38' stroke-width='2' opacity='0.6'/%3E%3C/svg%3E");
            background-size: 300px 300px;
            animation: designPatternPulse 12s ease-in-out infinite;
        }

        @keyframes designPatternPulse {
            0%, 100% { opacity: 0.06; transform: scale(1) rotate(0deg); }
            50% { opacity: 0.12; transform: scale(1.1) rotate(5deg); }
        }

        /* Service Badge */
        .design-service-badge {
            display: inline-block;
            background: linear-gradient(135deg, rgba(215, 172, 56, 0.15), rgba(213, 172, 115, 0.1));
            border: 1px solid rgba(215, 172, 56, 0.3);
            padding: 12px 28px;
            border-radius: 35px;
            font-size: 14px;
            font-weight: 700;
            color: #d7ac38;
            margin-bottom: 28px;
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(15px);
            box-shadow: 0 6px 25px rgba(215, 172, 56, 0.2);
            animation: designBadgeGlow 5s ease-in-out infinite;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .design-service-badge::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(215, 172, 56, 0.4), transparent);
            animation: designBadgeShimmer 4s ease-in-out infinite;
        }

        @keyframes designBadgeShimmer {
            0% { left: -100%; }
            50%, 100% { left: 100%; }
        }

        @keyframes designBadgeGlow {
            0%, 100% {
                box-shadow: 0 6px 25px rgba(215, 172, 56, 0.2);
                border-color: rgba(215, 172, 56, 0.3);
            }
            50% {
                box-shadow: 0 12px 40px rgba(215, 172, 56, 0.35);
                border-color: rgba(215, 172, 56, 0.45);
            }
        }

        /* Hero Section */
        .design-hero-section {
            padding: 100px 5% 80px;
            position: relative;
            overflow: hidden;
            min-height: 90vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .design-floating-shapes {
            position: absolute;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .design-shape {
            position: absolute;
            border-radius: 15px;
            background: linear-gradient(135deg, rgba(215, 172, 56, 0.15), rgba(213, 172, 115, 0.08));
            border: 2px solid rgba(215, 172, 56, 0.25);
            backdrop-filter: blur(10px);
        }

        .design-shape:nth-child(1) {
            width: 100px;
            height: 100px;
            top: 10%;
            left: 10%;
            animation: designShapeFloat1 10s ease-in-out infinite;
            transform: rotate(45deg);
        }

        .design-shape:nth-child(2) {
            width: 80px;
            height: 80px;
            top: 20%;
            right: 15%;
            animation: designShapeFloat2 8s ease-in-out infinite 2s;
            border-radius: 50%;
        }

        .design-shape:nth-child(3) {
            width: 120px;
            height: 60px;
            bottom: 25%;
            left: 8%;
            animation: designShapeFloat3 12s ease-in-out infinite 4s;
        }

        .design-shape:nth-child(4) {
            width: 90px;
            height: 90px;
            bottom: 15%;
            right: 10%;
            animation: designShapeFloat1 9s ease-in-out infinite 6s;
            clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
        }

        @keyframes designShapeFloat1 {
            0%, 100% {
                transform: translateY(0) rotate(45deg);
                opacity: 0.6;
            }
            50% {
                transform: translateY(-30px) rotate(90deg);
                opacity: 0.9;
            }
        }

        @keyframes designShapeFloat2 {
            0%, 100% {
                transform: translateY(0) scale(1);
                opacity: 0.5;
            }
            50% {
                transform: translateY(-25px) scale(1.2);
                opacity: 0.8;
            }
        }

        @keyframes designShapeFloat3 {
            0%, 100% {
                transform: translateX(0) rotateY(0deg);
                opacity: 0.4;
            }
            50% {
                transform: translateX(20px) rotateY(180deg);
                opacity: 0.7;
            }
        }

        .design-hero-content {
            text-align: center;
            z-index: 2;
            max-width: 1000px;
            padding: 0 20px;
            animation: designHeroReveal 2.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        @keyframes designHeroReveal {
            0% {
                opacity: 0;
                transform: translateY(80px) scale(0.9);
                filter: blur(10px);
            }
            100% {
                opacity: 1;
                transform: translateY(0) scale(1);
                filter: blur(0px);
            }
        }

        .design-hero-title {
            font-size: 4.5rem;
            font-weight: 900;
            margin-bottom: 28px;
            color: #0f172a;
            line-height: 1.1;
            position: relative;
            letter-spacing: -2.5px;
        }

        .design-hero-title .design-highlight {
            background: linear-gradient(135deg, #d7ac38 0%, #d5ac73 50%, #c9a366 100%);
            background-size: 400% 400%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            position: relative;
            animation: designHighlightWave 6s ease-in-out infinite;
        }

        @keyframes designHighlightWave {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .design-hero-title .design-highlight::after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 0;
            width: 100%;
            height: 6px;
            background: linear-gradient(90deg, #d7ac38, transparent, #d7ac38);
            background-size: 400% 100%;
            border-radius: 3px;
            animation: designUnderlineSlide 5s ease-in-out infinite;
        }

        @keyframes designUnderlineSlide {
            0%, 100% { background-position: 0% 50%; opacity: 0.8; }
            50% { background-position: 100% 50%; opacity: 1; }
        }

        .design-hero-subtitle {
            font-size: 1.5rem;
            margin-bottom: 35px;
            color: #64748b;
            font-weight: 500;
            animation: designFadeSlideUp 2s ease-out 0.7s both;
            line-height: 1.6;
        }

        @keyframes designFadeSlideUp {
            0% {
                opacity: 0;
                transform: translateY(50px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .design-specialties {
            display: flex;
            justify-content: center;
            gap: 25px;
            margin: 50px 0;
            animation: designFadeSlideUp 2s ease-out 1.2s both;
            flex-wrap: wrap;
        }

        .design-specialty-item {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.95) 100%);
            border: 1px solid rgba(215, 172, 56, 0.2);
            border-radius: 20px;
            padding: 25px 30px;
            text-align: center;
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(25px);
            box-shadow: 0 8px 30px rgba(15, 23, 42, 0.1);
            min-width: 180px;
        }

        .design-specialty-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #d7ac38, #d5ac73);
            opacity: 0;
            transition: opacity 0.6s ease;
        }

        .design-specialty-item:hover::before {
            opacity: 1;
        }

        .design-specialty-item:hover {
            transform: translateY(-15px) scale(1.08);
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 1) 100%);
            box-shadow: 0 25px 60px rgba(215, 172, 56, 0.3);
            border-color: rgba(215, 172, 56, 0.4);
        }

        .design-specialty-icon {
            font-size: 3rem;
            margin-bottom: 15px;
            display: block;
            animation: designIconBounce 3s ease-in-out infinite;
        }

        @keyframes designIconBounce {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-12px) rotate(5deg); }
        }

        .design-specialty-name {
            font-size: 1.1rem;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 8px;
        }

        .design-specialty-desc {
            font-size: 0.95rem;
            color: #64748b;
            font-weight: 500;
        }

        /* Services Section */
        .design-services-section {
            padding: 120px 5% 100px;
            background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
            position: relative;
        }

        .design-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .design-section-title {
            text-align: center;
            margin-bottom: 80px;
        }

        .design-section-title h2 {
            font-size: 3.8rem;
            font-weight: 900;
            color: #0f172a;
            margin-bottom: 25px;
            position: relative;
        }

        .design-section-title h2 .design-highlight {
            background: linear-gradient(135deg, #d7ac38 0%, #d5ac73 50%, #c9a366 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .design-section-title p {
            font-size: 1.4rem;
            color: #64748b;
            max-width: 700px;
            margin: 0 auto;
            font-weight: 500;
            line-height: 1.6;
        }

        .design-services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 50px;
            margin-top: 100px;
        }

        .design-service-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.98) 100%);
            border: 1px solid rgba(215, 172, 56, 0.15);
            border-radius: 28px;
            padding: 50px 40px;
            transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(25px);
            box-shadow: 0 10px 50px rgba(15, 23, 42, 0.08);
        }

        .design-service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 6px;
            background: linear-gradient(90deg, #d7ac38, #d5ac73);
            opacity: 0;
            transition: opacity 0.7s ease;
        }

        .design-service-card:hover::before {
            opacity: 1;
        }

        .design-service-card:hover {
            transform: translateY(-20px) scale(1.03);
            box-shadow: 0 35px 90px rgba(215, 172, 56, 0.3);
            border-color: rgba(215, 172, 56, 0.35);
        }

        .design-service-icon {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, #d7ac38 0%, #d5ac73 100%);
            border-radius: 26px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3.5rem;
            margin-bottom: 35px;
            position: relative;
            box-shadow: 0 15px 45px rgba(215, 172, 56, 0.35);
            animation: designServiceIconGlow 4s ease-in-out infinite;
        }

        @keyframes designServiceIconGlow {
            0%, 100% {
                box-shadow: 0 15px 45px rgba(215, 172, 56, 0.35);
                transform: rotateY(0deg);
            }
            50% {
                box-shadow: 0 20px 55px rgba(215, 172, 56, 0.45);
                transform: rotateY(10deg);
            }
        }

        .design-service-card h3 {
            font-size: 2rem;
            font-weight: 800;
            color: #0f172a;
            margin-bottom: 20px;
            line-height: 1.3;
        }

        .design-service-card p {
            color: #64748b;
            font-size: 1.2rem;
            line-height: 1.7;
            margin-bottom: 25px;
            font-weight: 500;
        }

        .design-service-features {
            list-style: none;
            margin-bottom: 35px;
        }

        .design-service-features li {
            padding: 12px 0;
            color: #475569;
            position: relative;
            padding-left: 35px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.4s ease;
        }

        .design-service-features li::before {
            content: '✨';
            position: absolute;
            left: 0;
            color: #d7ac38;
            font-weight: 900;
            font-size: 1.2rem;
            top: 8px;
            animation: designFeatureSparkle 2s ease-in-out infinite;
        }

        @keyframes designFeatureSparkle {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.2); }
        }

        .design-service-features li:hover {
            color: #1e293b;
            transform: translateX(15px);
        }

        /* Applications Section */
        .design-applications-section {
            padding: 120px 5% 100px;
            background: linear-gradient(135deg, #f1f5f9 0%, #ffffff 50%, #f8fafc 100%);
            position: relative;
        }

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

        .design-application-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.95) 100%);
            border: 1px solid rgba(215, 172, 56, 0.15);
            border-radius: 24px;
            padding: 40px 35px;
            text-align: center;
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            box-shadow: 0 8px 40px rgba(15, 23, 42, 0.08);
        }

        .design-application-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #d7ac38, #d5ac73);
            opacity: 0;
            transition: opacity 0.6s ease;
        }

        .design-application-card:hover::before {
            opacity: 1;
        }

        .design-application-card:hover {
            transform: translateY(-15px) rotateX(5deg);
            box-shadow: 0 30px 70px rgba(215, 172, 56, 0.25);
            border-color: rgba(215, 172, 56, 0.3);
        }

        .design-application-icon {
            font-size: 4rem;
            margin-bottom: 20px;
            display: block;
            animation: designAppIconSpin 8s linear infinite;
        }

        @keyframes designAppIconSpin {
            0% { transform: rotateY(0deg); }
            100% { transform: rotateY(360deg); }
        }

        .design-application-card h3 {
            font-size: 1.6rem;
            font-weight: 800;
            color: #0f172a;
            margin-bottom: 15px;
        }

        .design-application-card p {
            color: #64748b;
            font-size: 1.1rem;
            line-height: 1.6;
            font-weight: 500;
        }

        /* Process Section */
        .design-process-section {
            padding: 120px 5% 100px;
            background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
            position: relative;
        }

        .design-process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            margin-top: 100px;
        }

        .design-process-step {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 1) 100%);
            border: 1px solid rgba(215, 172, 56, 0.15);
            border-radius: 24px;
            padding: 40px 35px;
            text-align: center;
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            box-shadow: 0 8px 40px rgba(15, 23, 42, 0.08);
        }

        .design-process-step::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #d7ac38, #d5ac73);
            opacity: 0;
            transition: opacity 0.6s ease;
        }

        .design-process-step:hover::before {
            opacity: 1;
        }

        .design-process-step:hover {
            transform: translateY(-15px) perspective(1000px) rotateX(10deg);
            box-shadow: 0 30px 70px rgba(215, 172, 56, 0.25);
            border-color: rgba(215, 172, 56, 0.3);
        }

        .design-step-number {
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, #d7ac38 0%, #d5ac73 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            font-weight: 900;
            color: #ffffff;
            margin: 0 auto 25px;
            box-shadow: 0 12px 40px rgba(215, 172, 56, 0.4);
            animation: designStepPulse 3s ease-in-out infinite;
        }

        @keyframes designStepPulse {
            0%, 100% {
                transform: scale(1);
                box-shadow: 0 12px 40px rgba(215, 172, 56, 0.4);
            }
            50% {
                transform: scale(1.1);
                box-shadow: 0 16px 50px rgba(215, 172, 56, 0.5);
            }
        }

        .design-process-step h3 {
            font-size: 1.6rem;
            font-weight: 800;
            color: #0f172a;
            margin-bottom: 15px;
        }

        .design-process-step p {
            color: #64748b;
            font-size: 1.1rem;
            line-height: 1.6;
            font-weight: 500;
        }

        /* Tools Section */
        .design-tools-section {
            padding: 120px 5% 100px;
            background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
            position: relative;
        }

        .design-tools-categories {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 50px;
            margin-top: 100px;
        }

        .design-tool-category {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.95) 100%);
            border: 1px solid rgba(215, 172, 56, 0.15);
            border-radius: 24px;
            padding: 45px 40px;
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            backdrop-filter: blur(20px);
            box-shadow: 0 8px 40px rgba(15, 23, 42, 0.08);
        }

        .design-tool-category::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #d7ac38, #d5ac73);
            opacity: 0;
            transition: opacity 0.6s ease;
        }

        .design-tool-category:hover::before {
            opacity: 1;
        }

        .design-tool-category:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 30px 70px rgba(215, 172, 56, 0.25);
            border-color: rgba(215, 172, 56, 0.3);
        }

        .design-tool-category h3 {
            font-size: 1.8rem;
            font-weight: 800;
            color: #0f172a;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .design-tool-category-icon {
            font-size: 2.8rem;
            animation: designToolIconRotate 6s ease-in-out infinite;
        }

        @keyframes designToolIconRotate {
            0%, 100% { transform: rotateZ(0deg); }
            50% { transform: rotateZ(15deg); }
        }

        .design-tool-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 20px;
        }

        .design-tool-tag {
            background: linear-gradient(135deg, rgba(215, 172, 56, 0.12), rgba(213, 172, 115, 0.08));
            border: 1px solid rgba(215, 172, 56, 0.25);
            padding: 10px 20px;
            border-radius: 25px;
            font-size: 13px;
            font-weight: 600;
            color: #d7ac38;
            transition: all 0.4s ease;
        }

        .design-tool-tag:hover {
            background: linear-gradient(135deg, #d7ac38, #d5ac73);
            color: #ffffff;
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 10px 25px rgba(215, 172, 56, 0.35);
        }

        /* CTA Section */
        .design-cta-section {
            padding: 120px 5% 100px;
            background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
            position: relative;
            color: #1e293b;
            text-align: center;
        }

        .design-cta-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .design-cta-content h2 {
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 25px;
            color: #0f172a;
        }

        .design-cta-content h2 .design-highlight {
            background: linear-gradient(135deg, #d7ac38 0%, #d5ac73 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .design-cta-content p {
            font-size: 1.3rem;
            line-height: 1.7;
            margin-bottom: 45px;
            color: #64748b;
            font-weight: 500;
        }

        .design-cta-buttons {
            display: flex;
            gap: 25px;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 50px;
        }

        .design-btn {
            padding: 18px 40px;
            border: none;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            font-family: 'Comic Neue', cursive;
        }

        .design-btn-primary {
            background: linear-gradient(135deg, #d7ac38 0%, #d5ac73 100%);
            color: #0a1f44;
            box-shadow: 0 10px 35px rgba(215, 172, 56, 0.35);
            position: relative;
        }

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

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

        .design-btn-primary:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 60px rgba(215, 172, 56, 0.5);
            background: linear-gradient(135deg, #e8bd49 0%, #e6bd84 100%);
        }

        .design-btn-secondary {
            background: rgba(215, 172, 56, 0.1);
            color: #d7ac38;
            border: 2px solid rgba(215, 172, 56, 0.3);
            backdrop-filter: blur(20px);
            box-shadow: 0 10px 35px rgba(215, 172, 56, 0.2);
        }

        .design-btn-secondary:hover {
            background: rgba(215, 172, 56, 0.2);
            border-color: #d7ac38;
            transform: translateY(-5px);
            box-shadow: 0 20px 60px rgba(215, 172, 56, 0.4);
            color: #0f172a;
        }

        .design-btn-icon {
            width: 22px;
            height: 22px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
        }

       /* ============================================
   DESIGN SERVICE PAGE - RESPONSIVE CSS
   ============================================ */

/* Large Tablets & Small Laptops (1024px and below) */
@media screen and (max-width: 1024px) {
    .design-hero-title {
        font-size: 3.8rem;
    }

    .design-section-title h2 {
        font-size: 3.2rem;
    }

    .design-services-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 40px;
    }

    .design-applications-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 35px;
    }

    .design-process-steps {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 35px;
    }

    .design-tools-categories {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 40px;
    }

    .design-cta-content h2 {
        font-size: 3rem;
    }
}

/* Tablets (768px and below) */
@media screen and (max-width: 768px) {
    .design-hero-section {
        padding: 80px 5% 60px;
        min-height: auto;
    }

    .design-hero-title {
        font-size: 3rem;
        letter-spacing: -1.5px;
    }

    .design-hero-title .design-highlight::after {
        height: 4px;
        bottom: -8px;
    }

    .design-hero-subtitle {
        font-size: 1.25rem;
    }

    .design-specialties {
        gap: 18px;
        margin: 40px 0;
    }

    .design-specialty-item {
        min-width: 160px;
        padding: 22px 25px;
    }

    .design-specialty-icon {
        font-size: 2.6rem;
        margin-bottom: 12px;
    }

    .design-specialty-name {
        font-size: 1rem;
    }

    .design-specialty-desc {
        font-size: 0.9rem;
    }

    .design-services-section,
    .design-applications-section,
    .design-process-section,
    .design-tools-section,
    .design-cta-section {
        padding: 80px 5% 60px;
    }

    .design-section-title {
        margin-bottom: 60px;
    }

    .design-section-title h2 {
        font-size: 2.5rem;
    }

    .design-section-title p {
        font-size: 1.2rem;
    }

    .design-services-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        margin-top: 60px;
    }

    .design-service-card {
        padding: 40px 30px;
        border-radius: 24px;
    }

    .design-service-icon {
        width: 85px;
        height: 85px;
        font-size: 3rem;
        border-radius: 22px;
        margin-bottom: 25px;
    }

    .design-service-card h3 {
        font-size: 1.8rem;
    }

    .design-service-card p {
        font-size: 1.1rem;
    }

    .design-service-features li {
        font-size: 1rem;
        padding-left: 30px;
    }

    .design-applications-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 60px;
    }

    .design-application-card {
        padding: 35px 30px;
    }

    .design-application-icon {
        font-size: 3.5rem;
        margin-bottom: 18px;
    }

    .design-application-card h3 {
        font-size: 1.5rem;
    }

    .design-process-steps {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 60px;
    }

    .design-process-step {
        padding: 35px 30px;
    }

    .design-step-number {
        width: 80px;
        height: 80px;
        font-size: 2.2rem;
    }

    .design-process-step h3 {
        font-size: 1.5rem;
    }

    .design-tools-categories {
        grid-template-columns: 1fr;
        gap: 35px;
        margin-top: 60px;
    }

    .design-tool-category {
        padding: 35px 30px;
    }

    .design-tool-category h3 {
        font-size: 1.6rem;
    }

    .design-tool-category-icon {
        font-size: 2.5rem;
    }

    .design-cta-content h2 {
        font-size: 2.5rem;
    }

    .design-cta-content p {
        font-size: 1.15rem;
    }

    .design-cta-buttons {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .design-btn {
        width: 100%;
        max-width: 350px;
        justify-content: center;
    }

    /* Hide some floating shapes on tablets */
    .design-shape:nth-child(3),
    .design-shape:nth-child(4) {
        display: none;
    }
}

/* Mobile Devices (480px and below) */
@media screen and (max-width: 480px) {
    .design-service-badge {
        font-size: 12px;
        padding: 10px 22px;
        letter-spacing: 0.7px;
    }

    .design-hero-section {
        padding: 60px 5% 50px;
    }

    .design-hero-title {
        font-size: 2.2rem;
        letter-spacing: -1px;
    }

    .design-hero-title .design-highlight::after {
        height: 3px;
        bottom: -6px;
    }

    .design-hero-subtitle {
        font-size: 1.05rem;
        margin-bottom: 30px;
    }

    .design-specialties {
        gap: 15px;
        margin: 35px 0;
    }

    .design-specialty-item {
        min-width: 145px;
        padding: 20px 22px;
        border-radius: 18px;
    }

    .design-specialty-icon {
        font-size: 2.3rem;
        margin-bottom: 10px;
    }

    .design-specialty-name {
        font-size: 0.95rem;
        margin-bottom: 6px;
    }

    .design-specialty-desc {
        font-size: 0.85rem;
    }

    .design-services-section,
    .design-applications-section,
    .design-process-section,
    .design-tools-section,
    .design-cta-section {
        padding: 60px 5% 50px;
    }

    .design-section-title {
        margin-bottom: 50px;
    }

    .design-section-title h2 {
        font-size: 2rem;
    }

    .design-section-title p {
        font-size: 1.05rem;
    }

    .design-services-grid {
        margin-top: 50px;
        gap: 30px;
    }

    .design-service-card {
        padding: 35px 25px;
        border-radius: 22px;
    }

    .design-service-icon {
        width: 75px;
        height: 75px;
        font-size: 2.6rem;
        border-radius: 20px;
        margin-bottom: 20px;
    }

    .design-service-card h3 {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }

    .design-service-card p {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .design-service-features li {
        font-size: 0.95rem;
        padding: 10px 0;
        padding-left: 28px;
    }

    .design-service-features li::before {
        font-size: 1.1rem;
    }

    .design-applications-grid {
        margin-top: 50px;
        gap: 25px;
    }

    .design-application-card {
        padding: 30px 25px;
        border-radius: 20px;
    }

    .design-application-icon {
        font-size: 3.2rem;
        margin-bottom: 15px;
    }

    .design-application-card h3 {
        font-size: 1.4rem;
        margin-bottom: 12px;
    }

    .design-application-card p {
        font-size: 1rem;
    }

    .design-process-steps {
        margin-top: 50px;
        gap: 25px;
    }

    .design-process-step {
        padding: 30px 25px;
        border-radius: 20px;
    }

    .design-step-number {
        width: 75px;
        height: 75px;
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .design-process-step h3 {
        font-size: 1.4rem;
        margin-bottom: 12px;
    }

    .design-process-step p {
        font-size: 1rem;
    }

    .design-tools-categories {
        margin-top: 50px;
        gap: 30px;
    }

    .design-tool-category {
        padding: 30px 25px;
        border-radius: 20px;
    }

    .design-tool-category h3 {
        font-size: 1.45rem;
        gap: 12px;
    }

    .design-tool-category-icon {
        font-size: 2.2rem;
    }

    .design-tool-tags {
        gap: 10px;
        margin-top: 18px;
    }

    .design-tool-tag {
        padding: 8px 16px;
        border-radius: 20px;
        font-size: 12px;
    }

    .design-cta-content h2 {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .design-cta-content p {
        font-size: 1.05rem;
        margin-bottom: 35px;
    }

    .design-cta-buttons {
        margin-top: 40px;
    }

    .design-btn {
        padding: 16px 35px;
        font-size: 1rem;
        gap: 10px;
    }

    .design-btn-icon {
        width: 20px;
        height: 20px;
        font-size: 13px;
    }

    /* Hide all floating shapes on mobile */
    .design-shape {
        display: none;
    }
}

/* Extra Small Devices (360px and below) */
@media screen and (max-width: 360px) {
    .design-service-badge {
        font-size: 11px;
        padding: 9px 20px;
    }

    .design-hero-title {
        font-size: 1.9rem;
    }

    .design-hero-subtitle {
        font-size: 0.98rem;
    }

    .design-specialty-item {
        min-width: 135px;
        padding: 18px 20px;
    }

    .design-specialty-icon {
        font-size: 2.1rem;
    }

    .design-specialty-name {
        font-size: 0.9rem;
    }

    .design-section-title h2 {
        font-size: 1.75rem;
    }

    .design-section-title p {
        font-size: 0.98rem;
    }

    .design-service-card {
        padding: 30px 20px;
    }

    .design-service-icon {
        width: 70px;
        height: 70px;
        font-size: 2.4rem;
        border-radius: 18px;
    }

    .design-service-card h3 {
        font-size: 1.45rem;
    }

    .design-service-card p {
        font-size: 0.95rem;
    }

    .design-service-features li {
        font-size: 0.9rem;
        padding-left: 25px;
    }

    .design-application-card {
        padding: 25px 20px;
    }

    .design-application-icon {
        font-size: 3rem;
    }

    .design-application-card h3 {
        font-size: 1.3rem;
    }

    .design-application-card p {
        font-size: 0.95rem;
    }

    .design-process-step {
        padding: 25px 20px;
    }

    .design-step-number {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin-bottom: 18px;
    }

    .design-process-step h3 {
        font-size: 1.3rem;
    }

    .design-process-step p {
        font-size: 0.95rem;
    }

    .design-tool-category {
        padding: 25px 20px;
    }

    .design-tool-category h3 {
        font-size: 1.35rem;
        gap: 10px;
    }

    .design-tool-category-icon {
        font-size: 2rem;
    }

    .design-tool-tag {
        padding: 7px 14px;
        font-size: 11px;
    }

    .design-cta-content h2 {
        font-size: 1.8rem;
    }

    .design-cta-content p {
        font-size: 1rem;
    }

    .design-btn {
        padding: 14px 30px;
        font-size: 0.95rem;
    }

    .design-btn-icon {
        width: 18px;
        height: 18px;
        font-size: 12px;
    }
}

/* Ultra Small Devices (320px and below) */
@media screen and (max-width: 320px) {
    .design-service-badge {
        font-size: 10px;
        padding: 8px 18px;
        letter-spacing: 0.5px;
    }

    .design-hero-section {
        padding: 50px 4% 40px;
    }

    .design-hero-title {
        font-size: 1.7rem;
        letter-spacing: -0.7px;
    }

    .design-hero-subtitle {
        font-size: 0.92rem;
    }

    .design-specialties {
        gap: 12px;
        margin: 30px 0;
    }

    .design-specialty-item {
        min-width: 125px;
        padding: 16px 18px;
        border-radius: 16px;
    }

    .design-specialty-icon {
        font-size: 2rem;
        margin-bottom: 8px;
    }

    .design-specialty-name {
        font-size: 0.85rem;
        margin-bottom: 5px;
    }

    .design-specialty-desc {
        font-size: 0.78rem;
    }

    .design-services-section,
    .design-applications-section,
    .design-process-section,
    .design-tools-section,
    .design-cta-section {
        padding: 50px 4% 40px;
    }

    .design-section-title {
        margin-bottom: 40px;
    }

    .design-section-title h2 {
        font-size: 1.6rem;
    }

    .design-section-title p {
        font-size: 0.92rem;
    }

    .design-services-grid {
        margin-top: 40px;
        gap: 25px;
    }

    .design-service-card {
        padding: 25px 18px;
        border-radius: 20px;
    }

    .design-service-icon {
        width: 65px;
        height: 65px;
        font-size: 2.2rem;
        border-radius: 16px;
        margin-bottom: 18px;
    }

    .design-service-card h3 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }

    .design-service-card p {
        font-size: 0.9rem;
        margin-bottom: 18px;
    }

    .design-service-features {
        margin-bottom: 25px;
    }

    .design-service-features li {
        font-size: 0.85rem;
        padding: 8px 0;
        padding-left: 22px;
    }

    .design-service-features li::before {
        font-size: 1rem;
        top: 6px;
    }

    .design-applications-grid {
        margin-top: 40px;
        gap: 20px;
    }

    .design-application-card {
        padding: 22px 18px;
        border-radius: 18px;
    }

    .design-application-icon {
        font-size: 2.8rem;
        margin-bottom: 12px;
    }

    .design-application-card h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .design-application-card p {
        font-size: 0.9rem;
    }

    .design-process-steps {
        margin-top: 40px;
        gap: 20px;
    }

    .design-process-step {
        padding: 22px 18px;
        border-radius: 18px;
    }

    .design-step-number {
        width: 65px;
        height: 65px;
        font-size: 1.7rem;
        margin-bottom: 15px;
    }

    .design-process-step h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .design-process-step p {
        font-size: 0.9rem;
    }

    .design-tools-categories {
        margin-top: 40px;
        gap: 25px;
    }

    .design-tool-category {
        padding: 22px 18px;
        border-radius: 18px;
    }

    .design-tool-category h3 {
        font-size: 1.25rem;
        gap: 8px;
        margin-bottom: 16px;
    }

    .design-tool-category-icon {
        font-size: 1.8rem;
    }

    .design-tool-tags {
        gap: 8px;
        margin-top: 15px;
    }

    .design-tool-tag {
        padding: 6px 12px;
        border-radius: 18px;
        font-size: 10px;
    }

    .design-cta-content h2 {
        font-size: 1.6rem;
        margin-bottom: 18px;
    }

    .design-cta-content p {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }

    .design-cta-buttons {
        margin-top: 35px;
        gap: 15px;
    }

    .design-btn {
        padding: 13px 25px;
        font-size: 0.9rem;
        gap: 8px;
        border-radius: 10px;
    }

    .design-btn-icon {
        width: 16px;
        height: 16px;
        font-size: 11px;
    }
}
  










        /* Software & ERP Solutions */


        .erp-dev-page {
            font-family: 'Comic Neue', cursive;
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
            color: #1e293b;
            overflow-x: hidden;
            position: relative;
            min-height: 100vh;
        }

        /* Enhanced ERP Circuit Background */
        .erp-circuit-grid {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(215, 172, 56, 0.08) 1px, transparent 1px),
                linear-gradient(90deg, rgba(215, 172, 56, 0.08) 1px, transparent 1px),
                linear-gradient(rgba(10, 31, 68, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(10, 31, 68, 0.03) 1px, transparent 1px);
            background-size: 120px 120px, 120px 120px, 40px 40px, 40px 40px;
            z-index: -3;
            animation: erpGridFlow 25s linear infinite;
        }

        @keyframes erpGridFlow {
            0% { transform: translate(0, 0) rotate(0deg); }
            100% { transform: translate(120px, 120px) rotate(2deg); }
        }

        /* ERP Data Flow Background */
        .erp-data-flow {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -2;
            opacity: 0.05;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 400'%3E%3Cdefs%3E%3ClinearGradient id='erpGrad' x1='0%25' y1='0%25' x2='100%25' y2='100%25'%3E%3Cstop offset='0%25' style='stop-color:%23d7ac38;stop-opacity:1' /%3E%3Cstop offset='50%25' style='stop-color:%23d5ac73;stop-opacity:0.8' /%3E%3Cstop offset='100%25' style='stop-color:%230a1f44;stop-opacity:1' /%3E%3C/linearGradient%3E%3C/defs%3E%3Crect x='50' y='50' width='80' height='60' rx='10' fill='none' stroke='url(%23erpGrad)' stroke-width='2'/%3E%3Crect x='270' y='50' width='80' height='60' rx='10' fill='none' stroke='url(%23erpGrad)' stroke-width='2'/%3E%3Crect x='50' y='290' width='80' height='60' rx='10' fill='none' stroke='url(%23erpGrad)' stroke-width='2'/%3E%3Crect x='270' y='290' width='80' height='60' rx='10' fill='none' stroke='url(%23erpGrad)' stroke-width='2'/%3E%3Crect x='160' y='170' width='80' height='60' rx='10' fill='none' stroke='url(%23erpGrad)' stroke-width='3'/%3E%3Cpath d='M130 80h30M240 80h30M130 320h30M240 320h30M90 110v60M310 110v60M90 230v60M310 230v60M160 200h-30M240 200h30' stroke='url(%23erpGrad)' stroke-width='2' stroke-dasharray='5,5'/%3E%3Ccircle cx='200' cy='200' r='15' fill='%23d7ac38' opacity='0.7'/%3E%3C/svg%3E");
            background-size: 500px 500px;
            animation: erpDataPulse 10s ease-in-out infinite;
        }

        @keyframes erpDataPulse {
            0%, 100% { opacity: 0.05; transform: scale(1) rotate(0deg); }
            50% { opacity: 0.1; transform: scale(1.1) rotate(3deg); }
        }

        /* Service Badge */
        .erp-service-badge {
            display: inline-block;
            background: linear-gradient(135deg, rgba(215, 172, 56, 0.18), rgba(213, 172, 115, 0.12));
            border: 1px solid rgba(215, 172, 56, 0.35);
            padding: 14px 32px;
            border-radius: 40px;
            font-size: 14px;
            font-weight: 700;
            color: #d7ac38;
            margin-bottom: 32px;
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(20px);
            box-shadow: 0 8px 30px rgba(215, 172, 56, 0.25);
            animation: erpBadgeGlow 4s ease-in-out infinite;
            text-transform: uppercase;
            letter-spacing: 1.2px;
        }

        .erp-service-badge::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(215, 172, 56, 0.4), transparent);
            animation: erpBadgeFlow 3.5s ease-in-out infinite;
        }

        @keyframes erpBadgeFlow {
            0% { left: -100%; }
            50%, 100% { left: 100%; }
        }

        @keyframes erpBadgeGlow {
            0%, 100% {
                box-shadow: 0 8px 30px rgba(215, 172, 56, 0.25);
                border-color: rgba(215, 172, 56, 0.35);
            }
            50% {
                box-shadow: 0 12px 40px rgba(215, 172, 56, 0.4);
                border-color: rgba(215, 172, 56, 0.5);
            }
        }

        /* Hero Section */
        .erp-hero-section {
            padding: 100px 5% 80px;
            position: relative;
            overflow: hidden;
            min-height: 90vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }

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

        .erp-system-block {
            position: absolute;
            font-family: 'Comic Neue', cursive;
            font-size: 12px;
            color: rgba(215, 172, 56, 0.5);
            background: rgba(255, 255, 255, 0.15);
            padding: 18px;
            border-radius: 12px;
            border: 1px solid rgba(215, 172, 56, 0.25);
            backdrop-filter: blur(15px);
            text-align: center;
            font-weight: 600;
        }

        .erp-system-block:nth-child(1) {
            top: 12%;
            left: 6%;
            animation: erpSystemFloat1 9s ease-in-out infinite;
        }

        .erp-system-block:nth-child(2) {
            top: 20%;
            right: 8%;
            animation: erpSystemFloat2 9s ease-in-out infinite 2s;
        }

        .erp-system-block:nth-child(3) {
            bottom: 35%;
            left: 10%;
            animation: erpSystemFloat1 9s ease-in-out infinite 4s;
        }

        .erp-system-block:nth-child(4) {
            bottom: 18%;
            right: 12%;
            animation: erpSystemFloat2 9s ease-in-out infinite 6s;
        }

        @keyframes erpSystemFloat1 {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
                opacity: 0.5;
            }
            50% {
                transform: translateY(-25px) rotate(2deg);
                opacity: 0.8;
            }
        }

        @keyframes erpSystemFloat2 {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
                opacity: 0.5;
            }
            50% {
                transform: translateY(-18px) rotate(-2deg);
                opacity: 0.8;
            }
        }

        .erp-hero-content {
            text-align: center;
            z-index: 2;
            max-width: 1100px;
            padding: 0 20px;
            animation: erpHeroEntry 2.2s ease-out;
        }

        @keyframes erpHeroEntry {
            0% {
                opacity: 0;
                transform: translateY(70px) scale(0.92);
            }
            100% {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .erp-hero-title {
            font-size: 4.8rem;
            font-weight: 900;
            margin-bottom: 32px;
            color: #0f172a;
            line-height: 1.05;
            position: relative;
            letter-spacing: -3px;
        }

        .erp-hero-title .erp-highlight {
            background: linear-gradient(135deg, #d7ac38 0%, #d5ac73 40%, #c9a366 100%);
            background-size: 350% 350%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            position: relative;
            animation: erpHighlightGlow 6s ease-in-out infinite;
        }

        @keyframes erpHighlightGlow {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .erp-hero-title .erp-highlight::after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 0;
            width: 100%;
            height: 6px;
            background: linear-gradient(90deg, #d7ac38, #d5ac73, #d7ac38);
            background-size: 350% 100%;
            border-radius: 4px;
            animation: erpUnderlineWave 5s ease-in-out infinite;
        }

        @keyframes erpUnderlineWave {
            0%, 100% { background-position: 0% 50%; opacity: 0.9; }
            50% { background-position: 100% 50%; opacity: 1; }
        }

        .erp-hero-subtitle {
            font-size: 1.6rem;
            margin-bottom: 40px;
            color: #64748b;
            font-weight: 500;
            animation: erpFadeInUp 2.2s ease-out 0.6s both;
            line-height: 1.65;
        }

        @keyframes erpFadeInUp {
            0% {
                opacity: 0;
                transform: translateY(50px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .erp-solution-showcase {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin: 55px 0;
            animation: erpFadeInUp 2.2s ease-out 1.2s both;
            flex-wrap: wrap;
        }

        .erp-solution-item {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(248, 250, 252, 0.98) 100%);
            border: 1px solid rgba(215, 172, 56, 0.25);
            border-radius: 25px;
            padding: 30px 35px;
            text-align: center;
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(30px);
            box-shadow: 0 10px 35px rgba(15, 23, 42, 0.12);
            min-width: 180px;
        }

        .erp-solution-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #d7ac38, #d5ac73);
            opacity: 0;
            transition: opacity 0.6s ease;
        }

        .erp-solution-item:hover::before {
            opacity: 1;
        }

        .erp-solution-item:hover {
            transform: translateY(-12px) scale(1.08);
            background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(248, 250, 252, 1) 100%);
            box-shadow: 0 25px 60px rgba(215, 172, 56, 0.3);
            border-color: rgba(215, 172, 56, 0.4);
        }

        .erp-solution-icon {
            font-size: 3.2rem;
            margin-bottom: 18px;
            display: block;
            animation: erpSolutionPulse 2.5s ease-in-out infinite;
        }

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

        .erp-solution-name {
            font-size: 1.2rem;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 10px;
        }

        .erp-solution-desc {
            font-size: 1rem;
            color: #64748b;
            font-weight: 500;
        }

        /* Features Section */
        .erp-features-section {
            padding: 130px 5% 110px;
            background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
            position: relative;
        }

        .erp-container {
            max-width: 1500px;
            margin: 0 auto;
        }

        .erp-section-title {
            text-align: center;
            margin-bottom: 90px;
        }

        .erp-section-title h2 {
            font-size: 4rem;
            font-weight: 900;
            color: #0f172a;
            margin-bottom: 30px;
            position: relative;
        }

        .erp-section-title h2 .erp-highlight {
            background: linear-gradient(135deg, #d7ac38 0%, #d5ac73 50%, #c9a366 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .erp-section-title p {
            font-size: 1.5rem;
            color: #64748b;
            max-width: 750px;
            margin: 0 auto;
            font-weight: 500;
            line-height: 1.7;
        }

        .erp-features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 60px;
            margin-top: 110px;
        }

        .erp-feature-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 250, 252, 1) 100%);
            border: 1px solid rgba(215, 172, 56, 0.18);
            border-radius: 32px;
            padding: 20px;
            transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(30px);
            box-shadow: 0 12px 55px rgba(15, 23, 42, 0.1);
        }

        .erp-feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 6px;
            background: linear-gradient(90deg, #d7ac38, #d5ac73);
            opacity: 0;
            transition: opacity 0.7s ease;
        }

        .erp-feature-card:hover::before {
            opacity: 1;
        }

        .erp-feature-card:hover {
            transform: translateY(-18px) scale(1.03);
            box-shadow: 0 35px 90px rgba(215, 172, 56, 0.3);
            border-color: rgba(215, 172, 56, 0.35);
        }

        .erp-feature-icon {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, #d7ac38 0%, #d5ac73 100%);
            border-radius: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3.5rem;
            margin-bottom: 40px;
            position: relative;
            box-shadow: 0 15px 45px rgba(215, 172, 56, 0.35);
            animation: erpFeatureIconRotate 4s ease-in-out infinite;
        }

        @keyframes erpFeatureIconRotate {
            0%, 100% {
                box-shadow: 0 15px 45px rgba(215, 172, 56, 0.35);
                transform: rotate(0deg);
            }
            50% {
                box-shadow: 0 20px 55px rgba(215, 172, 56, 0.45);
                transform: rotate(5deg);
            }
        }

        .erp-feature-card h3 {
            font-size: 2.2rem;
            font-weight: 800;
            color: #0f172a;
            margin-bottom: 25px;
            line-height: 1.3;
        }


        .erp-feature-list {
            list-style: none;
        }

        .erp-feature-list li {
            padding: 15px 0;
            color: #475569;
            position: relative;
            padding-left: 40px;
            font-weight: 600;
            font-size: 1.15rem;
            transition: all 0.4s ease;
        }

        .erp-feature-list li::before {
            content: '⚡';
            position: absolute;
            left: 0;
            color: #d7ac38;
            font-weight: 900;
            font-size: 1.4rem;
            top: 12px;
        }

        .erp-feature-list li:hover {
            color: #1e293b;
            transform: translateX(15px);
        }

        /* Benefits Section */
        .erp-benefits-section {
            padding: 130px 5% 110px;
            background: linear-gradient(135deg, #0a1f44 0%, #1e3a5f 50%, #2d4a6b 100%);
            position: relative;
            color: #ffffff;
        }

        .erp-benefits-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 120px;
            align-items: center;
            max-width: 1500px;
            margin: 0 auto;
        }

        .erp-benefits-text h2 {
            font-size: 3.8rem;
            font-weight: 900;
            margin-bottom: 40px;
            color: #ffffff;
        }

        .erp-benefits-text h2 .erp-highlight {
            background: linear-gradient(135deg, #d7ac38 0%, #d5ac73 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .erp-benefits-text p {
            font-size: 1.4rem;
            line-height: 1.85;
            margin-bottom: 40px;
            color: rgba(255, 255, 255, 0.92);
            font-weight: 500;
        }

        .erp-benefits-stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-top: 60px;
        }

        .erp-benefit-stat {
            background: rgba(215, 172, 56, 0.12);
            border: 1px solid rgba(215, 172, 56, 0.3);
            border-radius: 25px;
            padding: 35px 30px;
            text-align: center;
            transition: all 0.6s ease;
            backdrop-filter: blur(20px);
        }

        .erp-benefit-stat:hover {
            background: rgba(215, 172, 56, 0.18);
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(215, 172, 56, 0.3);
        }

        .erp-stat-number {
            font-size: 3.5rem;
            font-weight: 900;
            color: #d7ac38;
            display: block;
            margin-bottom: 15px;
        }

        .erp-stat-text {
            font-size: 1.2rem;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.92);
        }

        .erp-benefits-visual {
            position: relative;
        }

        .erp-benefits-img {
            width: 100%;
            border-radius: 32px;
            background: linear-gradient(135deg, rgba(215, 172, 56, 0.25) 0%, rgba(213, 172, 115, 0.15) 100%);
            min-height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12rem;
            color: rgba(215, 172, 56, 0.7);
            border: 2px solid rgba(215, 172, 56, 0.35);
            box-shadow: 0 25px 90px rgba(0, 0, 0, 0.5);
            position: relative;
            overflow: hidden;
        }

        .erp-benefits-img::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent 25%, rgba(215, 172, 56, 0.15) 50%, transparent 75%);
            animation: erpDataShimmer 4s ease-in-out infinite;
        }

        @keyframes erpDataShimmer {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        /* Types Section */
        .erp-types-section {
            padding: 130px 5% 110px;
            background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
            position: relative;
        }

        .erp-types-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 50px;
            margin-top: 110px;
        }

        .erp-type-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.94) 0%, rgba(248, 250, 252, 1) 100%);
            border: 1px solid rgba(215, 172, 56, 0.18);
            border-radius: 28px;
            padding: 50px 40px;
            text-align: center;
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            box-shadow: 0 10px 45px rgba(15, 23, 42, 0.1);
        }

        .erp-type-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #d7ac38, #d5ac73);
            opacity: 0;
            transition: opacity 0.6s ease;
        }

        .erp-type-card:hover::before {
            opacity: 1;
        }

        .erp-type-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 30px 70px rgba(215, 172, 56, 0.25);
            border-color: rgba(215, 172, 56, 0.3);
        }

        .erp-type-icon {
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, #d7ac38 0%, #d5ac73 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            font-weight: 900;
            color: #ffffff;
            margin: 0 auto 30px;
            box-shadow: 0 12px 40px rgba(215, 172, 56, 0.4);
        }

        .erp-type-card h3 {
            font-size: 1.8rem;
            font-weight: 800;
            color: #0f172a;
            margin-bottom: 20px;
        }

        .erp-type-card p {
            color: #64748b;
            font-size: 1.15rem;
            line-height: 1.7;
            font-weight: 500;
        }

        /* Technologies Section */
        .erp-technologies-section {
            padding: 130px 5% 110px;
            background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
            position: relative;
        }

        .erp-tech-categories {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(370px, 1fr));
            gap: 60px;
            margin-top: 110px;
        }

        .erp-tech-category {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(248, 250, 252, 0.98) 100%);
            border: 1px solid rgba(215, 172, 56, 0.18);
            border-radius: 28px;
            padding: 50px 45px;
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            backdrop-filter: blur(25px);
            box-shadow: 0 10px 45px rgba(15, 23, 42, 0.1);
        }

        .erp-tech-category::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #d7ac38, #d5ac73);
            opacity: 0;
            transition: opacity 0.6s ease;
        }

        .erp-tech-category:hover::before {
            opacity: 1;
        }

        .erp-tech-category:hover {
            transform: translateY(-15px);
            box-shadow: 0 30px 70px rgba(215, 172, 56, 0.25);
            border-color: rgba(215, 172, 56, 0.3);
        }

        .erp-tech-category h3 {
            font-size: 2rem;
            font-weight: 800;
            color: #0f172a;
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            gap: 18px;
        }

        .erp-tech-category-icon {
            font-size: 2.8rem;
        }

        .erp-tech-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 25px;
        }

        .erp-tech-tag {
            background: linear-gradient(135deg, rgba(215, 172, 56, 0.15), rgba(213, 172, 115, 0.1));
            border: 1px solid rgba(215, 172, 56, 0.3);
            padding: 12px 25px;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 600;
            color: #d7ac38;
            transition: all 0.4s ease;
        }

        .erp-tech-tag:hover {
            background: linear-gradient(135deg, #d7ac38, #d5ac73);
            color: #ffffff;
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(215, 172, 56, 0.35);
        }

        /* CTA Section */
        .erp-cta-section {
            padding: 130px 5% 110px;
            background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
            position: relative;
            color: #1e293b;
            text-align: center;
        }

        .erp-cta-content {
            max-width: 850px;
            margin: 0 auto;
        }

        .erp-cta-content h2 {
            font-size: 3.8rem;
            font-weight: 900;
            margin-bottom: 30px;
            color: #0f172a;
        }

        .erp-cta-content h2 .erp-highlight {
            background: linear-gradient(135deg, #d7ac38 0%, #d5ac73 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .erp-cta-content p {
            font-size: 1.4rem;
            line-height: 1.8;
            margin-bottom: 50px;
            color: #64748b;
            font-weight: 500;
        }

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

        .erp-btn {
            padding: 20px 45px;
            border: none;
            border-radius: 15px;
            font-size: 1.2rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 15px;
            font-family: 'Comic Neue', cursive;
        }

        .erp-btn-primary {
            background: linear-gradient(135deg, #d7ac38 0%, #d5ac73 100%);
            color: #0a1f44;
            box-shadow: 0 12px 40px rgba(215, 172, 56, 0.4);
            position: relative;
        }

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

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

        .erp-btn-primary:hover {
            transform: translateY(-6px);
            box-shadow: 0 25px 70px rgba(215, 172, 56, 0.6);
            background: linear-gradient(135deg, #e8bd49 0%, #e6bd84 100%);
        }

        .erp-btn-secondary {
            background: rgba(215, 172, 56, 0.12);
            color: #d7ac38;
            border: 2px solid rgba(215, 172, 56, 0.4);
            backdrop-filter: blur(25px);
            box-shadow: 0 12px 40px rgba(215, 172, 56, 0.2);
        }

        .erp-btn-secondary:hover {
            background: rgba(215, 172, 56, 0.25);
            border-color: #d7ac38;
            transform: translateY(-6px);
            box-shadow: 0 25px 70px rgba(215, 172, 56, 0.4);
            color: #0f172a;
        }

        .erp-btn-icon {
            width: 25px;
            height: 25px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.25);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
        }

       /* ============================================
   ERP DEVELOPMENT PAGE - RESPONSIVE CSS
   ============================================ */

/* Large Tablets & Small Laptops (1024px and below) */
@media screen and (max-width: 1024px) {
    .erp-hero-title {
        font-size: 4rem;
    }

    .erp-section-title h2 {
        font-size: 3.4rem;
    }

    .erp-features-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 45px;
    }

    .erp-benefits-content {
        grid-template-columns: 1fr;
        gap: 70px;
    }

    .erp-benefits-img {
        min-height: 500px;
        font-size: 10rem;
    }

    .erp-benefits-text h2 {
        font-size: 3.2rem;
    }

    .erp-types-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 40px;
    }

    .erp-tech-categories {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 45px;
    }

    .erp-cta-content h2 {
        font-size: 3.2rem;
    }
}

/* Tablets (768px and below) */
@media screen and (max-width: 768px) {
    .erp-hero-section {
        padding: 80px 5% 60px;
        min-height: auto;
    }

    .erp-hero-title {
        font-size: 3.2rem;
        letter-spacing: -2px;
    }

    .erp-hero-title .erp-highlight::after {
        height: 4px;
        bottom: -8px;
    }

    .erp-hero-subtitle {
        font-size: 1.3rem;
    }

    .erp-solution-showcase {
        gap: 20px;
        margin: 45px 0;
    }

    .erp-solution-item {
        min-width: 160px;
        padding: 25px 30px;
    }

    .erp-solution-icon {
        font-size: 2.8rem;
        margin-bottom: 15px;
    }

    .erp-solution-name {
        font-size: 1.1rem;
    }

    .erp-solution-desc {
        font-size: 0.95rem;
    }

    .erp-features-section,
    .erp-benefits-section,
    .erp-types-section,
    .erp-technologies-section,
    .erp-cta-section {
        padding: 80px 5% 60px;
    }

    .erp-section-title {
        margin-bottom: 70px;
    }

    .erp-section-title h2 {
        font-size: 2.8rem;
    }

    .erp-section-title p {
        font-size: 1.25rem;
    }

    .erp-features-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 70px;
    }

    .erp-feature-card {
        padding: 40px 35px;
        border-radius: 28px;
    }

    .erp-feature-icon {
        width: 85px;
        height: 85px;
        font-size: 3rem;
        border-radius: 24px;
        margin-bottom: 30px;
    }

    .erp-feature-card h3 {
        font-size: 1.9rem;
    }

    .erp-feature-list li {
        font-size: 1.05rem;
        padding-left: 35px;
    }

    .erp-benefits-text h2 {
        font-size: 2.8rem;
    }

    .erp-benefits-text p {
        font-size: 1.25rem;
    }

    .erp-benefits-stats {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 50px;
    }

    .erp-benefit-stat {
        padding: 30px 25px;
    }

    .erp-stat-number {
        font-size: 3rem;
    }

    .erp-stat-text {
        font-size: 1.1rem;
    }

    .erp-benefits-img {
        min-height: 420px;
        font-size: 8rem;
    }

    .erp-types-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        margin-top: 70px;
    }

    .erp-type-card {
        padding: 40px 35px;
    }

    .erp-type-icon {
        width: 80px;
        height: 80px;
        font-size: 2.2rem;
    }

    .erp-type-card h3 {
        font-size: 1.6rem;
    }

    .erp-type-card p {
        font-size: 1.05rem;
    }

    .erp-tech-categories {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 70px;
    }

    .erp-tech-category {
        padding: 40px 35px;
    }

    .erp-tech-category h3 {
        font-size: 1.8rem;
    }

    .erp-tech-category-icon {
        font-size: 2.5rem;
    }

    .erp-cta-content h2 {
        font-size: 2.8rem;
    }

    .erp-cta-content p {
        font-size: 1.25rem;
    }

    .erp-cta-buttons {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .erp-btn {
        width: 100%;
        max-width: 380px;
        justify-content: center;
    }

    /* Hide some floating system blocks on tablets */
    .erp-system-block:nth-child(3),
    .erp-system-block:nth-child(4) {
        display: none;
    }
}

/* Mobile Devices (480px and below) */
@media screen and (max-width: 480px) {
    .erp-service-badge {
        font-size: 12px;
        padding: 11px 24px;
        letter-spacing: 0.8px;
    }

    .erp-hero-section {
        padding: 60px 5% 50px;
    }

    .erp-hero-title {
        font-size: 2.4rem;
        letter-spacing: -1.2px;
    }

    .erp-hero-title .erp-highlight::after {
        height: 3px;
        bottom: -6px;
    }

    .erp-hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 35px;
    }

    .erp-solution-showcase {
        gap: 15px;
        margin: 40px 0;
    }

    .erp-solution-item {
        min-width: 145px;
        padding: 22px 25px;
        border-radius: 20px;
    }

    .erp-solution-icon {
        font-size: 2.5rem;
        margin-bottom: 12px;
    }

    .erp-solution-name {
        font-size: 1rem;
    }

    .erp-solution-desc {
        font-size: 0.9rem;
    }

    .erp-features-section,
    .erp-benefits-section,
    .erp-types-section,
    .erp-technologies-section,
    .erp-cta-section {
        padding: 60px 5% 50px;
    }

    .erp-section-title {
        margin-bottom: 55px;
    }

    .erp-section-title h2 {
        font-size: 2.2rem;
    }

    .erp-section-title p {
        font-size: 1.1rem;
    }

    .erp-features-grid {
        margin-top: 55px;
        gap: 35px;
    }

    .erp-feature-card {
        padding: 35px 28px;
        border-radius: 24px;
    }

    .erp-feature-icon {
        width: 75px;
        height: 75px;
        font-size: 2.6rem;
        border-radius: 20px;
        margin-bottom: 25px;
    }

    .erp-feature-card h3 {
        font-size: 1.7rem;
        margin-bottom: 20px;
    }

    .erp-feature-list li {
        font-size: 1rem;
        padding: 12px 0;
        padding-left: 32px;
    }

    .erp-feature-list li::before {
        font-size: 1.2rem;
        top: 10px;
    }

    .erp-benefits-text h2 {
        font-size: 2.2rem;
        margin-bottom: 30px;
    }

    .erp-benefits-text p {
        font-size: 1.1rem;
        margin-bottom: 35px;
    }

    .erp-benefits-stats {
        margin-top: 45px;
    }

    .erp-benefit-stat {
        padding: 28px 22px;
        border-radius: 20px;
    }

    .erp-stat-number {
        font-size: 2.5rem;
        margin-bottom: 12px;
    }

    .erp-stat-text {
        font-size: 1rem;
    }

    .erp-benefits-img {
        min-height: 370px;
        font-size: 7rem;
        border-radius: 25px;
    }

    .erp-types-grid {
        margin-top: 55px;
        gap: 30px;
    }

    .erp-type-card {
        padding: 35px 28px;
        border-radius: 24px;
    }

    .erp-type-icon {
        width: 75px;
        height: 75px;
        font-size: 2rem;
        margin-bottom: 25px;
    }

    .erp-type-card h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .erp-type-card p {
        font-size: 1rem;
    }

    .erp-tech-categories {
        margin-top: 55px;
        gap: 35px;
    }

    .erp-tech-category {
        padding: 35px 28px;
        border-radius: 24px;
    }

    .erp-tech-category h3 {
        font-size: 1.6rem;
        gap: 15px;
    }

    .erp-tech-category-icon {
        font-size: 2.2rem;
    }

    .erp-tech-tags {
        gap: 12px;
        margin-top: 20px;
    }

    .erp-tech-tag {
        padding: 10px 20px;
        border-radius: 25px;
        font-size: 13px;
    }

    .erp-cta-content h2 {
        font-size: 2.2rem;
        margin-bottom: 25px;
    }

    .erp-cta-content p {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }

    .erp-cta-buttons {
        margin-top: 45px;
    }

    .erp-btn {
        padding: 17px 38px;
        font-size: 1.05rem;
        gap: 12px;
    }

    .erp-btn-icon {
        width: 22px;
        height: 22px;
        font-size: 14px;
    }

    /* Hide all floating system blocks on mobile */
    .erp-system-block {
        display: none;
    }
}

/* Extra Small Devices (360px and below) */
@media screen and (max-width: 360px) {
    .erp-service-badge {
        font-size: 11px;
        padding: 9px 20px;
        letter-spacing: 0.6px;
    }

    .erp-hero-title {
        font-size: 2.1rem;
    }

    .erp-hero-subtitle {
        font-size: 1.02rem;
    }

    .erp-solution-item {
        min-width: 135px;
        padding: 20px 22px;
    }

    .erp-solution-icon {
        font-size: 2.3rem;
    }

    .erp-solution-name {
        font-size: 0.95rem;
    }

    .erp-section-title h2 {
        font-size: 1.95rem;
    }

    .erp-section-title p {
        font-size: 1.02rem;
    }

    .erp-feature-card {
        padding: 30px 24px;
    }

    .erp-feature-icon {
        width: 70px;
        height: 70px;
        font-size: 2.4rem;
        border-radius: 18px;
    }

    .erp-feature-card h3 {
        font-size: 1.55rem;
    }

    .erp-feature-list li {
        font-size: 0.95rem;
        padding-left: 28px;
    }

    .erp-benefits-text h2 {
        font-size: 1.95rem;
    }

    .erp-benefits-text p {
        font-size: 1.02rem;
    }

    .erp-benefit-stat {
        padding: 24px 18px;
    }

    .erp-stat-number {
        font-size: 2.2rem;
    }

    .erp-stat-text {
        font-size: 0.95rem;
    }

    .erp-benefits-img {
        min-height: 330px;
        font-size: 6.5rem;
    }

    .erp-type-card {
        padding: 30px 24px;
    }

    .erp-type-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin-bottom: 22px;
    }

    .erp-type-card h3 {
        font-size: 1.4rem;
    }

    .erp-type-card p {
        font-size: 0.95rem;
    }

    .erp-tech-category {
        padding: 30px 24px;
    }

    .erp-tech-category h3 {
        font-size: 1.5rem;
        gap: 12px;
    }

    .erp-tech-category-icon {
        font-size: 2rem;
    }

    .erp-tech-tag {
        padding: 9px 18px;
        font-size: 12px;
    }

    .erp-cta-content h2 {
        font-size: 1.95rem;
    }

    .erp-cta-content p {
        font-size: 1.02rem;
    }

    .erp-btn {
        padding: 15px 32px;
        font-size: 1rem;
    }

    .erp-btn-icon {
        width: 20px;
        height: 20px;
        font-size: 13px;
    }
}

/* Ultra Small Devices (320px and below) */
@media screen and (max-width: 320px) {
    .erp-service-badge {
        font-size: 10px;
        padding: 8px 18px;
        letter-spacing: 0.5px;
    }

    .erp-hero-section {
        padding: 50px 4% 40px;
    }

    .erp-hero-title {
        font-size: 1.85rem;
        letter-spacing: -0.8px;
    }

    .erp-hero-subtitle {
        font-size: 0.95rem;
    }

    .erp-solution-showcase {
        gap: 12px;
        margin: 35px 0;
    }

    .erp-solution-item {
        min-width: 125px;
        padding: 18px 20px;
        border-radius: 18px;
    }

    .erp-solution-icon {
        font-size: 2.1rem;
        margin-bottom: 10px;
    }

    .erp-solution-name {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }

    .erp-solution-desc {
        font-size: 0.82rem;
    }

    .erp-features-section,
    .erp-benefits-section,
    .erp-types-section,
    .erp-technologies-section,
    .erp-cta-section {
        padding: 50px 4% 40px;
    }

    .erp-section-title {
        margin-bottom: 45px;
    }

    .erp-section-title h2 {
        font-size: 1.75rem;
    }

    .erp-section-title p {
        font-size: 0.95rem;
    }

    .erp-features-grid {
        margin-top: 45px;
        gap: 28px;
    }

    .erp-feature-card {
        padding: 28px 20px;
        border-radius: 22px;
    }

    .erp-feature-icon {
        width: 65px;
        height: 65px;
        font-size: 2.2rem;
        border-radius: 16px;
        margin-bottom: 22px;
    }

    .erp-feature-card h3 {
        font-size: 1.4rem;
        margin-bottom: 18px;
    }

    .erp-feature-list li {
        font-size: 0.9rem;
        padding: 10px 0;
        padding-left: 26px;
    }

    .erp-feature-list li::before {
        font-size: 1.1rem;
        top: 8px;
    }

    .erp-benefits-text h2 {
        font-size: 1.75rem;
        margin-bottom: 25px;
    }

    .erp-benefits-text p {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }

    .erp-benefits-stats {
        margin-top: 40px;
        gap: 18px;
    }

    .erp-benefit-stat {
        padding: 22px 16px;
        border-radius: 18px;
    }

    .erp-stat-number {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .erp-stat-text {
        font-size: 0.9rem;
    }

    .erp-benefits-img {
        min-height: 300px;
        font-size: 6rem;
        border-radius: 22px;
    }

    .erp-types-grid {
        margin-top: 45px;
        gap: 25px;
    }

    .erp-type-card {
        padding: 28px 20px;
        border-radius: 20px;
    }

    .erp-type-icon {
        width: 65px;
        height: 65px;
        font-size: 1.7rem;
        margin-bottom: 20px;
    }

    .erp-type-card h3 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }

    .erp-type-card p {
        font-size: 0.9rem;
    }

    .erp-tech-categories {
        margin-top: 45px;
        gap: 28px;
    }

    .erp-tech-category {
        padding: 28px 20px;
        border-radius: 20px;
    }

    .erp-tech-category h3 {
        font-size: 1.4rem;
        gap: 10px;
        margin-bottom: 20px;
    }

    .erp-tech-category-icon {
        font-size: 1.8rem;
    }

    .erp-tech-tags {
        gap: 10px;
        margin-top: 18px;
    }

    .erp-tech-tag {
        padding: 8px 16px;
        border-radius: 20px;
        font-size: 11px;
    }

    .erp-cta-content h2 {
        font-size: 1.75rem;
        margin-bottom: 20px;
    }

    .erp-cta-content p {
        font-size: 0.95rem;
        margin-bottom: 35px;
    }

    .erp-cta-buttons {
        margin-top: 40px;
        gap: 18px;
    }

    .erp-btn {
        padding: 14px 28px;
        font-size: 0.95rem;
        gap: 10px;
        border-radius: 12px;
    }

    .erp-btn-icon {
        width: 18px;
        height: 18px;
        font-size: 12px;
    }
}
 








/* Business Automation Page */



.automation-page {
    font-family: 'Comic Neue', cursive;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
    color: #1e293b;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Automation Grid Background */
.automation-tech-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(215, 172, 56, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(215, 172, 56, 0.05) 1px, transparent 1px),
        linear-gradient(rgba(10, 31, 68, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(10, 31, 68, 0.02) 1px, transparent 1px);
    background-size: 100px 100px, 100px 100px, 30px 30px, 30px 30px;
    z-index: -3;
    animation: automationGridFlow 25s linear infinite;
}

@keyframes automationGridFlow {
    0% { transform: translate(0, 0); }
    100% { transform: translate(100px, 100px); }
}

/* Automation Circuit Background */
.automation-circuit-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 400'%3E%3Cdefs%3E%3ClinearGradient id='autoGrad' x1='0%25' y1='0%25' x2='100%25' y2='100%25'%3E%3Cstop offset='0%25' style='stop-color:%23d7ac38;stop-opacity:1' /%3E%3Cstop offset='100%25' style='stop-color:%230a1f44;stop-opacity:1' /%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath d='M50 50L350 50L350 350L50 350Z' fill='none' stroke='url(%23autoGrad)' stroke-width='3'/%3E%3Ccircle cx='50' cy='50' r='8' fill='%23d7ac38'/%3E%3Ccircle cx='350' cy='50' r='8' fill='%23d7ac38'/%3E%3Ccircle cx='350' cy='350' r='8' fill='%23d7ac38'/%3E%3Ccircle cx='50' cy='350' r='8' fill='%23d7ac38'/%3E%3Cpath d='M200 50L200 350M50 200L350 200' stroke='url(%23autoGrad)' stroke-width='2'/%3E%3Ccircle cx='200' cy='200' r='12' fill='%23d7ac38' opacity='0.9'/%3E%3Cpath d='M125 125L275 125L275 275L125 275Z' fill='none' stroke='%230a1f44' stroke-width='1.5' opacity='0.7'/%3E%3C/svg%3E");
    background-size: 500px 500px;
    animation: automationCircuitRotate 12s ease-in-out infinite;
}

@keyframes automationCircuitRotate {
    0%, 100% { opacity: 0.03; transform: scale(1) rotate(0deg); }
    50% { opacity: 0.06; transform: scale(1.02) rotate(2deg); }
}

/* Service Badge */
.automation-service-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(215, 172, 56, 0.18), rgba(213, 172, 115, 0.12));
    border: 1px solid rgba(215, 172, 56, 0.35);
    padding: 14px 32px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 700;
    color: #d7ac38;
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 30px rgba(215, 172, 56, 0.25);
    animation: automationBadgePulse 4.5s ease-in-out infinite;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.automation-service-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(215, 172, 56, 0.4), transparent);
    animation: automationBadgeGlow 3.5s ease-in-out infinite;
}

@keyframes automationBadgeGlow {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

@keyframes automationBadgePulse {
    0%, 100% {
        box-shadow: 0 8px 30px rgba(215, 172, 56, 0.25);
        border-color: rgba(215, 172, 56, 0.35);
    }
    50% {
        box-shadow: 0 12px 40px rgba(215, 172, 56, 0.35);
        border-color: rgba(215, 172, 56, 0.45);
    }
}

/* Hero Section */
.automation-hero-section {
    padding: 120px 5% 100px;
    position: relative;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.automation-gear {
    position: absolute;
    font-size: 24px;
    color: rgba(215, 172, 56, 0.3);
    animation: automationGearSpin 8s linear infinite;
}

.automation-gear:nth-child(1) {
    top: 20%;
    left: 10%;
    font-size: 32px;
    animation-duration: 12s;
}

.automation-gear:nth-child(2) {
    top: 15%;
    right: 15%;
    font-size: 28px;
    animation-duration: 10s;
    animation-direction: reverse;
}

.automation-gear:nth-child(3) {
    bottom: 25%;
    left: 8%;
    font-size: 36px;
    animation-duration: 15s;
}

.automation-gear:nth-child(4) {
    bottom: 30%;
    right: 12%;
    font-size: 30px;
    animation-duration: 9s;
    animation-direction: reverse;
}

@keyframes automationGearSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.automation-hero-content {
    text-align: center;
    z-index: 2;
    max-width: 1100px;
    padding: 0 20px;
    animation: automationHeroEntrance 2.2s ease-out;
}

@keyframes automationHeroEntrance {
    0% {
        opacity: 0;
        transform: translateY(70px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.automation-hero-title {
    font-size: 4.8rem;
    font-weight: 900;
    margin-bottom: 32px;
    color: #0f172a;
    line-height: 1.05;
    position: relative;
    letter-spacing: -3px;
}

.automation-hero-title .automation-highlight {
    background: linear-gradient(135deg, #d7ac38 0%, #d5ac73 50%, #c9a366 100%);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    animation: automationHighlightFlow 6s ease-in-out infinite;
}

@keyframes automationHighlightFlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.automation-hero-title .automation-highlight::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #d7ac38, #d5ac73, #d7ac38);
    background-size: 400% 100%;
    border-radius: 3px;
    animation: automationUnderlineWave 5s ease-in-out infinite;
}

@keyframes automationUnderlineWave {
    0%, 100% { background-position: 0% 50%; opacity: 0.8; }
    50% { background-position: 100% 50%; opacity: 1; }
}

.automation-hero-subtitle {
    font-size: 1.6rem;
    margin-bottom: 40px;
    color: #64748b;
    font-weight: 500;
    animation: automationSlideUp 2.2s ease-out 0.6s both;
    line-height: 1.65;
}

@keyframes automationSlideUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.automation-benefits-preview {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 60px 0;
    animation: automationSlideUp 2.2s ease-out 1.2s both;
    flex-wrap: wrap;
}

.automation-benefit-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(248, 250, 252, 0.97) 100%);
    border: 1px solid rgba(215, 172, 56, 0.25);
    border-radius: 25px;
    padding: 30px 35px;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(30px);
    box-shadow: 0 10px 35px rgba(15, 23, 42, 0.12);
    min-width: 180px;
}

.automation-benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #d7ac38, #d5ac73);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.automation-benefit-item:hover::before {
    opacity: 1;
}

.automation-benefit-item:hover {
    transform: translateY(-12px) scale(1.08);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(248, 250, 252, 1) 100%);
    box-shadow: 0 25px 60px rgba(215, 172, 56, 0.3);
    border-color: rgba(215, 172, 56, 0.4);
}

.automation-benefit-icon {
    font-size: 3.2rem;
    margin-bottom: 18px;
    display: block;
    animation: automationBenefitBounce 2.5s ease-in-out infinite;
}

@keyframes automationBenefitBounce {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

.automation-benefit-name {
    font-size: 1.2rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
}

.automation-benefit-desc {
    font-size: 1rem;
    color: #64748b;
    font-weight: 600;
}

/* Services Overview Section */
.automation-services-section {
    padding: 140px 5% 120px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
    position: relative;
}

.automation-container {
    max-width: 1500px;
    margin: 0 auto;
}

.automation-section-title {
    text-align: center;
    margin-bottom: 100px;
}

.automation-section-title h2 {
    font-size: 4rem;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 30px;
    position: relative;
}

.automation-section-title h2 .automation-highlight {
    background: linear-gradient(135deg, #d7ac38 0%, #d5ac73 50%, #c9a366 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.automation-section-title p {
    font-size: 1.5rem;
    color: #64748b;
    max-width: 750px;
    margin: 0 auto;
    font-weight: 500;
    line-height: 1.65;
}

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

.automation-service-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 250, 252, 0.99) 100%);
    border: 1px solid rgba(215, 172, 56, 0.18);
    border-radius: 32px;
    padding: 20px;
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(30px);
    box-shadow: 0 12px 60px rgba(15, 23, 42, 0.1);
}

.automation-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #d7ac38, #d5ac73);
    opacity: 0;
    transition: opacity 0.7s ease;
}

.automation-service-card:hover::before {
    opacity: 1;
}

.automation-service-card:hover {
    transform: translateY(-18px) scale(1.03);
    box-shadow: 0 35px 90px rgba(215, 172, 56, 0.3);
    border-color: rgba(215, 172, 56, 0.35);
}

.automation-service-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #d7ac38 0%, #d5ac73 100%);
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    margin-bottom: 40px;
    position: relative;
    box-shadow: 0 15px 50px rgba(215, 172, 56, 0.35);
    animation: automationServiceIconFloat 4s ease-in-out infinite;
}

@keyframes automationServiceIconFloat {
    0%, 100% {
        box-shadow: 0 15px 50px rgba(215, 172, 56, 0.35);
        transform: translateY(0);
    }
    50% {
        box-shadow: 0 20px 60px rgba(215, 172, 56, 0.45);
        transform: translateY(-8px);
    }
}

.automation-service-card h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 25px;
    line-height: 1.3;
}

.automation-service-features {
    list-style: none;
}

.automation-service-features li {
    padding: 15px 0;
    color: #475569;
    position: relative;
    padding-left: 40px;
    font-weight: 600;
    font-size: 1.15rem;
    transition: all 0.4s ease;
}

.automation-service-features li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: #d7ac38;
    font-weight: 900;
    font-size: 1.4rem;
    top: 12px;
}

.automation-service-features li:hover {
    color: #1e293b;
    transform: translateX(12px);
}

/* Types Section */
.automation-types-section {
    padding: 140px 5% 120px;
    background: linear-gradient(135deg, #0a1f44 0%, #1e3a5f 50%, #2d4a6b 100%);
    position: relative;
    color: #ffffff;
}

.automation-types-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
    align-items: center;
    max-width: 1500px;
    margin: 0 auto;
}

.automation-types-text h2 {
    font-size: 3.8rem;
    font-weight: 900;
    margin-bottom: 40px;
    color: #ffffff;
}

.automation-types-text h2 .automation-highlight {
    background: linear-gradient(135deg, #d7ac38 0%, #d5ac73 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.automation-types-text p {
    font-size: 1.4rem;
    line-height: 1.85;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.automation-type-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 60px;
}

.automation-type-item {
    background: rgba(215, 172, 56, 0.12);
    border: 1px solid rgba(215, 172, 56, 0.3);
    border-radius: 25px;
    padding: 35px 30px;
    text-align: center;
    transition: all 0.6s ease;
    backdrop-filter: blur(20px);
}

.automation-type-item:hover {
    background: rgba(215, 172, 56, 0.18);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(215, 172, 56, 0.3);
}

.automation-type-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: block;
}

.automation-type-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #d7ac38;
    margin-bottom: 12px;
}

.automation-type-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.automation-types-visual {
    position: relative;
}

.automation-types-img {
    width: 100%;
    border-radius: 32px;
    background: linear-gradient(135deg, rgba(215, 172, 56, 0.25) 0%, rgba(213, 172, 115, 0.15) 100%);
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12rem;
    color: rgba(215, 172, 56, 0.7);
    border: 3px solid rgba(215, 172, 56, 0.35);
    box-shadow: 0 25px 100px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.automation-types-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 25%, rgba(215, 172, 56, 0.15) 50%, transparent 75%);
    animation: automationTypeShimmer 4s ease-in-out infinite;
}

@keyframes automationTypeShimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Process Section */
.automation-process-section {
    padding: 140px 5% 120px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
    position: relative;
}

.automation-process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 50px;
    margin-top: 120px;
}

.automation-process-step {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.97) 0%, rgba(248, 250, 252, 1) 100%);
    border: 1px solid rgba(215, 172, 56, 0.18);
    border-radius: 28px;
    padding: 50px 40px;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 10px 50px rgba(15, 23, 42, 0.1);
}

.automation-process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #d7ac38, #d5ac73);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.automation-process-step:hover::before {
    opacity: 1;
}

.automation-process-step:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 70px rgba(215, 172, 56, 0.25);
    border-color: rgba(215, 172, 56, 0.3);
}

.automation-step-number {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #d7ac38 0%, #d5ac73 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffffff;
    margin: 0 auto 30px;
    box-shadow: 0 12px 40px rgba(215, 172, 56, 0.4);
}

.automation-process-step h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
}

.automation-process-step p {
    color: #64748b;
    font-size: 1.2rem;
    line-height: 1.7;
    font-weight: 500;
}

/* Benefits Section */
.automation-benefits-section {
    padding: 140px 5% 100px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
}

.automation-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 60px;
    margin-top: 120px;
}

.automation-benefit-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.94) 0%, rgba(248, 250, 252, 0.98) 100%);
    border: 1px solid rgba(215, 172, 56, 0.16);
    border-radius: 30px;
    padding: 55px 45px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    backdrop-filter: blur(25px);
    box-shadow: 0 12px 55px rgba(15, 23, 42, 0.09);
}

.automation-benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #d7ac38, #d5ac73);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.automation-benefit-card:hover::before {
    opacity: 1;
}

.automation-benefit-card:hover {
    transform: translateY(-16px) scale(1.02);
    box-shadow: 0 30px 85px rgba(215, 172, 56, 0.28);
    border-color: rgba(215, 172, 56, 0.28);
}

.automation-benefit-card-icon {
    width: 95px;
    height: 95px;
    background: linear-gradient(135deg, #d7ac38 0%, #d5ac73 100%);
    border-radius: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.2rem;
    margin-bottom: 40px;
    position: relative;
    box-shadow: 0 14px 45px rgba(215, 172, 56, 0.35);
    animation: automationBenefitIconPulse 3.5s ease-in-out infinite;
}

@keyframes automationBenefitIconPulse {
    0%, 100% {
        box-shadow: 0 14px 45px rgba(215, 172, 56, 0.35);
    }
    50% {
        box-shadow: 0 18px 55px rgba(215, 172, 56, 0.45);
    }
}

.automation-benefit-card h3 {
    font-size: 2.1rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 22px;
    line-height: 1.3;
}

.automation-benefit-card p {
    color: #64748b;
    font-size: 1.25rem;
    line-height: 1.75;
    margin-bottom: 28px;
    font-weight: 500;
}

.automation-benefit-stats {
    display: flex;
    gap: 20px;
    margin-top: 35px;
}

.automation-stat {
    flex: 1;
    text-align: center;
    padding: 20px;
    background: rgba(215, 172, 56, 0.08);
    border-radius: 15px;
    border: 1px solid rgba(215, 172, 56, 0.2);
}

.automation-stat-number {
    font-size: 2.2rem;
    font-weight: 900;
    color: #d7ac38;
    display: block;
    margin-bottom: 8px;
}

.automation-stat-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: #64748b;
}

/* CTA Section */
.automation-cta-section {
    padding: 140px 5% 120px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 50%, #cbd5e1 100%);
    position: relative;
    color: #1e293b;
    text-align: center;
}

.automation-cta-content {
    max-width: 850px;
    margin: 0 auto;
}

.automation-cta-content h2 {
    font-size: 3.8rem;
    font-weight: 900;
    margin-bottom: 30px;
    color: #0f172a;
}

.automation-cta-content h2 .automation-highlight {
    background: linear-gradient(135deg, #d7ac38 0%, #d5ac73 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.automation-cta-content p {
    font-size: 1.4rem;
    line-height: 1.75;
    margin-bottom: 50px;
    color: #64748b;
    font-weight: 500;
}

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

.automation-btn {
    padding: 20px 45px;
    border: none;
    border-radius: 15px;
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-family: 'Comic Neue', cursive;
}

.automation-btn-primary {
    background: linear-gradient(135deg, #d7ac38 0%, #d5ac73 100%);
    color: #0a1f44;
    box-shadow: 0 12px 40px rgba(215, 172, 56, 0.4);
    position: relative;
}

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

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

.automation-btn-primary:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 70px rgba(215, 172, 56, 0.55);
    background: linear-gradient(135deg, #e8bd49 0%, #e6bd84 100%);
}

.automation-btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: #0a1f44;
    border: 2px solid rgba(215, 172, 56, 0.6);
    backdrop-filter: blur(25px);
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.15);
}

.automation-btn-secondary:hover {
    background: rgba(215, 172, 56, 0.15);
    border-color: #d7ac38;
    transform: translateY(-6px);
    box-shadow: 0 25px 70px rgba(215, 172, 56, 0.35);
}

.automation-btn-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}


/* ============================================
   AUTOMATION PAGE - RESPONSIVE CSS
   ============================================ */

/* Large Tablets & Small Laptops (1024px and below) */
@media screen and (max-width: 1024px) {
    .automation-hero-title {
        font-size: 4rem;
    }

    .automation-section-title h2 {
        font-size: 3.4rem;
    }

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

    .automation-types-content {
        grid-template-columns: 1fr;
        gap: 70px;
    }

    .automation-types-img {
        min-height: 500px;
        font-size: 10rem;
    }

    .automation-types-text h2 {
        font-size: 3.2rem;
    }

    .automation-process-steps {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 40px;
    }

    .automation-benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
        gap: 45px;
    }

    .automation-cta-content h2 {
        font-size: 3.2rem;
    }
}

/* Tablets (768px and below) */
@media screen and (max-width: 768px) {
    .automation-hero-section {
        padding: 80px 5% 60px;
        min-height: auto;
    }

    .automation-hero-title {
        font-size: 3.2rem;
        letter-spacing: -2px;
    }

    .automation-hero-title .automation-highlight::after {
        height: 4px;
        bottom: -8px;
    }

    .automation-hero-subtitle {
        font-size: 1.3rem;
    }

    .automation-benefits-preview {
        gap: 20px;
        margin: 45px 0;
    }

    .automation-benefit-item {
        min-width: 160px;
        padding: 25px 30px;
    }

    .automation-benefit-icon {
        font-size: 2.8rem;
        margin-bottom: 15px;
    }

    .automation-benefit-name {
        font-size: 1.1rem;
    }

    .automation-benefit-desc {
        font-size: 0.95rem;
    }

    .automation-services-section,
    .automation-types-section,
    .automation-process-section,
    .automation-benefits-section,
    .automation-cta-section {
        padding: 80px 5% 60px;
    }

    .automation-section-title {
        margin-bottom: 70px;
    }

    .automation-section-title h2 {
        font-size: 2.8rem;
    }

    .automation-section-title p {
        font-size: 1.25rem;
    }

    .automation-services-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 70px;
    }

    .automation-service-card {
        padding: 40px 35px;
        border-radius: 28px;
    }

    .automation-service-icon {
        width: 85px;
        height: 85px;
        font-size: 3rem;
        border-radius: 24px;
        margin-bottom: 30px;
    }

    .automation-service-card h3 {
        font-size: 1.9rem;
    }

    .automation-service-features li {
        font-size: 1.05rem;
        padding-left: 35px;
    }

    .automation-types-text h2 {
        font-size: 2.8rem;
    }

    .automation-types-text p {
        font-size: 1.25rem;
    }

    .automation-type-list {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 50px;
    }

    .automation-type-item {
        padding: 30px 25px;
    }

    .automation-type-icon {
        font-size: 3rem;
        margin-bottom: 18px;
    }

    .automation-type-name {
        font-size: 1.2rem;
    }

    .automation-types-img {
        min-height: 420px;
        font-size: 8rem;
    }

    .automation-process-steps {
        grid-template-columns: 1fr;
        gap: 35px;
        margin-top: 70px;
    }

    .automation-process-step {
        padding: 40px 35px;
    }

    .automation-step-number {
        width: 80px;
        height: 80px;
        font-size: 2.2rem;
    }

    .automation-process-step h3 {
        font-size: 1.6rem;
    }

    .automation-process-step p {
        font-size: 1.1rem;
    }

    .automation-benefits-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 70px;
    }

    .automation-benefit-card {
        padding: 45px 35px;
    }

    .automation-benefit-card-icon {
        width: 85px;
        height: 85px;
        font-size: 2.8rem;
        margin-bottom: 30px;
    }

    .automation-benefit-card h3 {
        font-size: 1.9rem;
    }

    .automation-benefit-card p {
        font-size: 1.15rem;
    }

    .automation-benefit-stats {
        flex-direction: column;
        gap: 15px;
    }

    .automation-cta-content h2 {
        font-size: 2.8rem;
    }

    .automation-cta-content p {
        font-size: 1.25rem;
    }

    .automation-cta-buttons {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .automation-btn {
        width: 100%;
        max-width: 380px;
        justify-content: center;
    }

    /* Hide some floating gears on tablets */
    .automation-gear:nth-child(3),
    .automation-gear:nth-child(4) {
        display: none;
    }
}

/* Mobile Devices (480px and below) */
@media screen and (max-width: 480px) {
    .automation-service-badge {
        font-size: 12px;
        padding: 11px 24px;
        letter-spacing: 0.8px;
    }

    .automation-hero-section {
        padding: 60px 5% 50px;
    }

    .automation-hero-title {
        font-size: 2.4rem;
        letter-spacing: -1.2px;
    }

    .automation-hero-title .automation-highlight::after {
        height: 3px;
        bottom: -6px;
    }

    .automation-hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 35px;
    }

    .automation-benefits-preview {
        gap: 15px;
        margin: 40px 0;
    }

    .automation-benefit-item {
        min-width: 145px;
        padding: 22px 25px;
        border-radius: 20px;
    }

    .automation-benefit-icon {
        font-size: 2.5rem;
        margin-bottom: 12px;
    }

    .automation-benefit-name {
        font-size: 1rem;
    }

    .automation-benefit-desc {
        font-size: 0.9rem;
    }

    .automation-services-section,
    .automation-types-section,
    .automation-process-section,
    .automation-benefits-section,
    .automation-cta-section {
        padding: 60px 5% 50px;
    }

    .automation-section-title {
        margin-bottom: 55px;
    }

    .automation-section-title h2 {
        font-size: 2.2rem;
    }

    .automation-section-title p {
        font-size: 1.1rem;
    }

    .automation-services-grid {
        margin-top: 55px;
        gap: 35px;
    }

    .automation-service-card {
        padding: 35px 28px;
        border-radius: 24px;
    }

    .automation-service-icon {
        width: 75px;
        height: 75px;
        font-size: 2.6rem;
        border-radius: 20px;
        margin-bottom: 25px;
    }

    .automation-service-card h3 {
        font-size: 1.7rem;
        margin-bottom: 20px;
    }

    .automation-service-features li {
        font-size: 1rem;
        padding: 12px 0;
        padding-left: 32px;
    }

    .automation-service-features li::before {
        font-size: 1.2rem;
        top: 10px;
    }

    .automation-types-text h2 {
        font-size: 2.2rem;
        margin-bottom: 30px;
    }

    .automation-types-text p {
        font-size: 1.1rem;
        margin-bottom: 35px;
    }

    .automation-type-list {
        margin-top: 45px;
    }

    .automation-type-item {
        padding: 28px 22px;
        border-radius: 20px;
    }

    .automation-type-icon {
        font-size: 2.8rem;
        margin-bottom: 15px;
    }

    .automation-type-name {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .automation-type-desc {
        font-size: 0.95rem;
    }

    .automation-types-img {
        min-height: 370px;
        font-size: 7rem;
        border-radius: 25px;
    }

    .automation-process-steps {
        margin-top: 55px;
        gap: 30px;
    }

    .automation-process-step {
        padding: 35px 28px;
        border-radius: 24px;
    }

    .automation-step-number {
        width: 75px;
        height: 75px;
        font-size: 2rem;
        margin-bottom: 25px;
    }

    .automation-process-step h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .automation-process-step p {
        font-size: 1.05rem;
    }

    .automation-benefits-grid {
        margin-top: 55px;
        gap: 35px;
    }

    .automation-benefit-card {
        padding: 40px 28px;
        border-radius: 25px;
    }

    .automation-benefit-card-icon {
        width: 75px;
        height: 75px;
        font-size: 2.5rem;
        margin-bottom: 25px;
    }

    .automation-benefit-card h3 {
        font-size: 1.7rem;
        margin-bottom: 18px;
    }

    .automation-benefit-card p {
        font-size: 1.05rem;
        margin-bottom: 22px;
    }

    .automation-benefit-stats {
        margin-top: 28px;
    }

    .automation-stat {
        padding: 18px;
    }

    .automation-stat-number {
        font-size: 1.9rem;
        margin-bottom: 6px;
    }

    .automation-stat-text {
        font-size: 0.9rem;
    }

    .automation-cta-content h2 {
        font-size: 2.2rem;
        margin-bottom: 25px;
    }

    .automation-cta-content p {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }

    .automation-cta-buttons {
        margin-top: 45px;
    }

    .automation-btn {
        padding: 17px 38px;
        font-size: 1.05rem;
        gap: 12px;
    }

    .automation-btn-icon {
        width: 22px;
        height: 22px;
        font-size: 14px;
    }

    /* Hide all floating gears on mobile */
    .automation-gear {
        display: none;
    }
}

/* Extra Small Devices (360px and below) */
@media screen and (max-width: 360px) {
    .automation-service-badge {
        font-size: 11px;
        padding: 9px 20px;
        letter-spacing: 0.6px;
    }

    .automation-hero-title {
        font-size: 2.1rem;
    }

    .automation-hero-subtitle {
        font-size: 1.02rem;
    }

    .automation-benefit-item {
        min-width: 135px;
        padding: 20px 22px;
    }

    .automation-benefit-icon {
        font-size: 2.3rem;
    }

    .automation-benefit-name {
        font-size: 0.95rem;
    }

    .automation-section-title h2 {
        font-size: 1.95rem;
    }

    .automation-section-title p {
        font-size: 1.02rem;
    }

    .automation-service-card {
        padding: 30px 24px;
    }

    .automation-service-icon {
        width: 70px;
        height: 70px;
        font-size: 2.4rem;
        border-radius: 18px;
    }

    .automation-service-card h3 {
        font-size: 1.55rem;
    }

    .automation-service-features li {
        font-size: 0.95rem;
        padding-left: 28px;
    }

    .automation-types-text h2 {
        font-size: 1.95rem;
    }

    .automation-types-text p {
        font-size: 1.02rem;
    }

    .automation-type-item {
        padding: 24px 18px;
    }

    .automation-type-icon {
        font-size: 2.6rem;
    }

    .automation-type-name {
        font-size: 1.05rem;
    }

    .automation-types-img {
        min-height: 330px;
        font-size: 6.5rem;
    }

    .automation-process-step {
        padding: 30px 24px;
    }

    .automation-step-number {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin-bottom: 22px;
    }

    .automation-process-step h3 {
        font-size: 1.4rem;
    }

    .automation-process-step p {
        font-size: 1rem;
    }

    .automation-benefit-card {
        padding: 35px 24px;
    }

    .automation-benefit-card-icon {
        width: 70px;
        height: 70px;
        font-size: 2.3rem;
    }

    .automation-benefit-card h3 {
        font-size: 1.55rem;
    }

    .automation-benefit-card p {
        font-size: 1rem;
    }

    .automation-stat-number {
        font-size: 1.8rem;
    }

    .automation-cta-content h2 {
        font-size: 1.95rem;
    }

    .automation-cta-content p {
        font-size: 1.02rem;
    }

    .automation-btn {
        padding: 15px 32px;
        font-size: 1rem;
    }

    .automation-btn-icon {
        width: 20px;
        height: 20px;
        font-size: 13px;
    }
}

/* Ultra Small Devices (320px and below) */
@media screen and (max-width: 320px) {
    .automation-service-badge {
        font-size: 10px;
        padding: 8px 18px;
        letter-spacing: 0.5px;
    }

    .automation-hero-section {
        padding: 50px 4% 40px;
    }

    .automation-hero-title {
        font-size: 1.85rem;
        letter-spacing: -0.8px;
    }

    .automation-hero-subtitle {
        font-size: 0.95rem;
    }

    .automation-benefits-preview {
        gap: 12px;
        margin: 35px 0;
    }

    .automation-benefit-item {
        min-width: 125px;
        padding: 18px 20px;
        border-radius: 18px;
    }

    .automation-benefit-icon {
        font-size: 2.1rem;
        margin-bottom: 10px;
    }

    .automation-benefit-name {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }

    .automation-benefit-desc {
        font-size: 0.82rem;
    }

    .automation-services-section,
    .automation-types-section,
    .automation-process-section,
    .automation-benefits-section,
    .automation-cta-section {
        padding: 50px 4% 40px;
    }

    .automation-section-title {
        margin-bottom: 45px;
    }

    .automation-section-title h2 {
        font-size: 1.75rem;
    }

    .automation-section-title p {
        font-size: 0.95rem;
    }

    .automation-services-grid {
        margin-top: 45px;
        gap: 28px;
    }

    .automation-service-card {
        padding: 28px 20px;
        border-radius: 22px;
    }

    .automation-service-icon {
        width: 65px;
        height: 65px;
        font-size: 2.2rem;
        border-radius: 16px;
        margin-bottom: 22px;
    }

    .automation-service-card h3 {
        font-size: 1.4rem;
        margin-bottom: 18px;
    }

    .automation-service-features li {
        font-size: 0.9rem;
        padding: 10px 0;
        padding-left: 26px;
    }

    .automation-service-features li::before {
        font-size: 1.1rem;
        top: 8px;
    }

    .automation-types-text h2 {
        font-size: 1.75rem;
        margin-bottom: 25px;
    }

    .automation-types-text p {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }

    .automation-type-list {
        margin-top: 40px;
        gap: 18px;
    }

    .automation-type-item {
        padding: 22px 16px;
        border-radius: 18px;
    }

    .automation-type-icon {
        font-size: 2.4rem;
        margin-bottom: 12px;
    }

    .automation-type-name {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .automation-type-desc {
        font-size: 0.88rem;
    }

    .automation-types-img {
        min-height: 300px;
        font-size: 6rem;
        border-radius: 22px;
    }

    .automation-process-steps {
        margin-top: 45px;
        gap: 25px;
    }

    .automation-process-step {
        padding: 28px 20px;
        border-radius: 20px;
    }

    .automation-step-number {
        width: 65px;
        height: 65px;
        font-size: 1.7rem;
        margin-bottom: 20px;
    }

    .automation-process-step h3 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }

    .automation-process-step p {
        font-size: 0.95rem;
    }

    .automation-benefits-grid {
        margin-top: 45px;
        gap: 28px;
    }

    .automation-benefit-card {
        padding: 30px 20px;
        border-radius: 22px;
    }

    .automation-benefit-card-icon {
        width: 65px;
        height: 65px;
        font-size: 2.1rem;
        margin-bottom: 22px;
    }

    .automation-benefit-card h3 {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }

    .automation-benefit-card p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .automation-benefit-stats {
        margin-top: 25px;
        gap: 12px;
    }

    .automation-stat {
        padding: 16px;
    }

    .automation-stat-number {
        font-size: 1.7rem;
        margin-bottom: 5px;
    }

    .automation-stat-text {
        font-size: 0.85rem;
    }

    .automation-cta-content h2 {
        font-size: 1.75rem;
        margin-bottom: 20px;
    }

    .automation-cta-content p {
        font-size: 0.95rem;
        margin-bottom: 35px;
    }

    .automation-cta-buttons {
        margin-top: 40px;
        gap: 18px;
    }

    .automation-btn {
        padding: 14px 28px;
        font-size: 0.95rem;
        gap: 10px;
        border-radius: 12px;
    }

    .automation-btn-icon {
        width: 18px;
        height: 18px;
        font-size: 12px;
    }
}












        /* About Page */

 

        .about-page {
            font-family: 'Comic Neue', cursive;
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
            color: #1e293b;
            overflow-x: hidden;
            position: relative;
            min-height: 100vh;
        }

        /* Tech Grid Background */
        .about-tech-grid {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(215, 172, 56, 0.05) 1px, transparent 1px),
                linear-gradient(90deg, rgba(215, 172, 56, 0.05) 1px, transparent 1px);
            background-size: 60px 60px;
            z-index: -2;
            animation: aboutGridMove 15s linear infinite;
        }

        @keyframes aboutGridMove {
            0% { transform: translate(0, 0); }
            100% { transform: translate(60px, 60px); }
        }

        /* Service Badge */
        .about-service-badge {
            display: inline-block;
            background: linear-gradient(135deg, rgba(215, 172, 56, 0.15), rgba(213, 172, 115, 0.1));
            border: 1px solid rgba(215, 172, 56, 0.3);
            padding: 10px 24px;
            border-radius: 30px;
            font-size: 13px;
            font-weight: 700;
            color: #d7ac38;
            margin-bottom: 24px;
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 20px rgba(215, 172, 56, 0.15);
            text-transform: uppercase;
            letter-spacing: 0.8px;
        }

        .about-service-badge::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(215, 172, 56, 0.3), transparent);
            animation: aboutBadgeShine 2.5s ease-in-out infinite;
        }

        @keyframes aboutBadgeShine {
            0% { left: -100%; }
            50%, 100% { left: 100%; }
        }

        /* Hero Section */
        .about-hero-section {
            padding: 100px 5% 55px 5%;
            position: relative;
            text-align: center;
        }

        .about-hero-content {
            max-width: 900px;
            margin: 0 auto;
            animation: aboutFadeInUp 1.5s ease-out;
        }

        @keyframes aboutFadeInUp {
            0% {
                opacity: 0;
                transform: translateY(40px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .about-hero-title {
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 24px;
            color: #0f172a;
            line-height: 1.1;
            letter-spacing: -1.5px;
        }

        .about-hero-title .about-highlight {
            background: linear-gradient(135deg, #d7ac38 0%, #d5ac73 50%, #c9a366 100%);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: aboutHighlightShine 3s ease-in-out infinite;
        }

        @keyframes aboutHighlightShine {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .about-hero-subtitle {
            font-size: 1.3rem;
            color: #64748b;
            font-weight: 500;
            line-height: 1.6;
            animation: aboutFadeInUp 1.5s ease-out 0.3s both;
        }

        /* Story Section */
        .about-story-section {
            padding: 80px 5% 60px;
            background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
        }

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

        .about-story-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-story-text h2 {
            font-size: 2.8rem;
            font-weight: 800;
            color: #0f172a;
            margin-bottom: 30px;
            line-height: 1.2;
        }

        .about-story-text h2 .about-highlight {
            background: linear-gradient(135deg, #d7ac38 0%, #d5ac73 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .about-story-text p {
            font-size: 1.1rem;
            color: #64748b;
            line-height: 1.7;
            margin-bottom: 20px;
            font-weight: 500;
        }

        .about-story-visual {
            background: linear-gradient(135deg, rgba(215, 172, 56, 0.1) 0%, rgba(213, 172, 115, 0.05) 100%);
            border-radius: 24px;
            min-height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 8rem;
            color: rgba(215, 172, 56, 0.4);
            border: 1px solid rgba(215, 172, 56, 0.2);
            position: relative;
            overflow: hidden;
        }

        .about-story-visual::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent 30%, rgba(215, 172, 56, 0.05) 50%, transparent 70%);
            animation: aboutShimmer 2s ease-in-out infinite;
        }

        @keyframes aboutShimmer {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        /* Values Section */
        .about-values-section {
            padding: 80px 5% 60px;
            background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
        }

        .about-section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .about-section-title h2 {
            font-size: 3rem;
            font-weight: 900;
            color: #0f172a;
            margin-bottom: 20px;
        }

        .about-section-title h2 .about-highlight {
            background: linear-gradient(135deg, #d7ac38 0%, #d5ac73 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .about-section-title p {
            font-size: 1.2rem;
            color: #64748b;
            max-width: 600px;
            margin: 0 auto;
            font-weight: 500;
        }

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

        .about-value-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.95) 100%);
            border: 1px solid rgba(215, 172, 56, 0.15);
            border-radius: 20px;
            padding: 30px 25px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            backdrop-filter: blur(20px);
            box-shadow: 0 6px 25px rgba(15, 23, 42, 0.05);
        }

        .about-value-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, #d7ac38, #d5ac73);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .about-value-card:hover::before {
            opacity: 1;
        }

        .about-value-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(215, 172, 56, 0.2);
            border-color: rgba(215, 172, 56, 0.25);
        }

        .about-value-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #d7ac38 0%, #d5ac73 100%);
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.2rem;
            margin: 0 auto 20px;
            box-shadow: 0 8px 25px rgba(215, 172, 56, 0.3);
        }

        .about-value-card h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 12px;
        }

        .about-value-card p {
            color: #64748b;
            font-size: 1rem;
            line-height: 1.6;
            font-weight: 500;
        }

        /* Team Section */
        .about-team-section {
            padding: 80px 5% 60px;
            background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
        }

        .about-founders-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 40px;
            margin-top: 60px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .about-founder-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.95) 100%);
            border: 1px solid rgba(215, 172, 56, 0.15);
            border-radius: 24px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            backdrop-filter: blur(20px);
            box-shadow: 0 8px 30px rgba(15, 23, 42, 0.08);
        }

        .about-founder-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #d7ac38, #d5ac73);
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .about-founder-card:hover::before {
            opacity: 1;
        }

        .about-founder-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(215, 172, 56, 0.2);
            border-color: rgba(215, 172, 56, 0.25);
        }

        .about-founder-img {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            margin: 0 auto 25px;
            background: linear-gradient(135deg, #d7ac38 0%, #d5ac73 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: #ffffff;
            box-shadow: 0 10px 35px rgba(215, 172, 56, 0.3);
            position: relative;
            overflow: hidden;
        }

        .about-founder-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
        }

        .about-founder-name {
            font-size: 1.5rem;
            font-weight: 800;
            color: #0f172a;
            margin-bottom: 8px;
        }

        .about-founder-role {
            font-size: 1rem;
            color: #d7ac38;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .about-founder-desc {
            color: #64748b;
            font-size: 0.95rem;
            line-height: 1.6;
            font-weight: 500;
        }

        /* Stats Section */
        .about-stats-section {
            padding: 80px 5% 60px;
            background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
        }

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

        .about-stat-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.95) 100%);
            border: 1px solid rgba(215, 172, 56, 0.15);
            border-radius: 20px;
            padding: 30px 20px;
            text-align: center;
            transition: all 0.4s ease;
            backdrop-filter: blur(15px);
            box-shadow: 0 6px 25px rgba(15, 23, 42, 0.05);
        }

        .about-stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 35px rgba(215, 172, 56, 0.15);
        }

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

        .about-stat-text {
            font-size: 1rem;
            font-weight: 600;
            color: #64748b;
        }

        /* Mission Section */
        .about-mission-section {
            padding: 80px 5% 60px;
            background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
        }

        .about-mission-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .about-mission-content h2 {
            font-size: 2.8rem;
            font-weight: 800;
            color: #0f172a;
            margin-bottom: 30px;
        }

        .about-mission-content h2 .about-highlight {
            background: linear-gradient(135deg, #d7ac38 0%, #d5ac73 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .about-mission-text {
            font-size: 1.2rem;
            color: #64748b;
            line-height: 1.8;
            font-weight: 500;
            margin-bottom: 40px;
        }

      
      /* Responsive Design */
@media (max-width: 1024px) {
    .about-hero-title {
        font-size: 2.8rem;
    }

    .about-hero-subtitle {
        font-size: 1.1rem;
    }

    .about-story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-story-text h2 {
        font-size: 2.3rem;
    }

    .about-section-title h2 {
        font-size: 2.5rem;
    }

    .about-values-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 25px;
    }

    .about-founders-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
}

@media (max-width: 768px) {
    .about-hero-section {
        padding: 80px 5% 40px 5%;
    }

    .about-hero-title {
        font-size: 2.2rem;
        letter-spacing: -1px;
    }

    .about-hero-subtitle {
        font-size: 1rem;
    }

    .about-service-badge {
        font-size: 11px;
        padding: 8px 20px;
    }

    .about-story-section,
    .about-values-section,
    .about-team-section,
    .about-stats-section,
    .about-mission-section {
        padding: 60px 5% 40px;
    }

    .about-story-text h2 {
        font-size: 1.9rem;
        margin-bottom: 20px;
    }

    .about-story-text p {
        font-size: 1rem;
    }

    .about-story-visual {
        min-height: 300px;
        font-size: 6rem;
    }

    .about-section-title h2 {
        font-size: 2rem;
    }

    .about-section-title p {
        font-size: 1rem;
    }

    .about-values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }

    .about-value-card {
        padding: 25px 20px;
    }

    .about-value-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }

    .about-value-card h3 {
        font-size: 1.2rem;
    }

    .about-founders-grid {
        margin-top: 40px;
    }

    .about-founder-card {
        padding: 30px 25px;
    }

    .about-founder-img {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }

    .about-founder-name {
        font-size: 1.3rem;
    }

    .about-stat-number {
        font-size: 2rem;
    }

    .about-stat-text {
        font-size: 0.9rem;
    }

    .about-mission-content h2 {
        font-size: 2.2rem;
    }

    .about-mission-text {
        font-size: 1.05rem;
    }
}

@media (max-width: 480px) {
    .about-hero-section {
        padding: 60px 4% 30px 4%;
    }

    .about-hero-title {
        font-size: 1.8rem;
        letter-spacing: -0.5px;
        margin-bottom: 18px;
    }

    .about-hero-subtitle {
        font-size: 0.95rem;
    }

    .about-service-badge {
        font-size: 10px;
        padding: 7px 16px;
        letter-spacing: 0.5px;
    }

    .about-story-section,
    .about-values-section,
    .about-team-section,
    .about-stats-section,
    .about-mission-section {
        padding: 50px 4% 30px;
    }

    .about-story-text h2 {
        font-size: 1.6rem;
    }

    .about-story-text p {
        font-size: 0.95rem;
        margin-bottom: 16px;
    }

    .about-story-visual {
        min-height: 250px;
        font-size: 4.5rem;
        border-radius: 18px;
    }

    .about-section-title {
        margin-bottom: 40px;
    }

    .about-section-title h2 {
        font-size: 1.7rem;
        margin-bottom: 15px;
    }

    .about-section-title p {
        font-size: 0.95rem;
    }

    .about-values-grid {
        gap: 18px;
        margin-top: 30px;
    }

    .about-value-card {
        padding: 22px 18px;
        border-radius: 16px;
    }

    .about-value-icon {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
        border-radius: 14px;
        margin-bottom: 16px;
    }

    .about-value-card h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .about-value-card p {
        font-size: 0.9rem;
    }

    .about-founders-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 30px;
    }

    .about-founder-card {
        padding: 25px 20px;
        border-radius: 20px;
    }

    .about-founder-img {
        width: 90px;
        height: 90px;
        font-size: 2.2rem;
        margin-bottom: 20px;
    }

    .about-founder-name {
        font-size: 1.2rem;
    }

    .about-founder-role {
        font-size: 0.9rem;
    }

    .about-founder-desc {
        font-size: 0.9rem;
    }

    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
        margin-top: 30px;
    }

    .about-stat-card {
        padding: 22px 15px;
        border-radius: 16px;
    }

    .about-stat-number {
        font-size: 1.8rem;
        margin-bottom: 8px;
    }

    .about-stat-text {
        font-size: 0.85rem;
    }

    .about-mission-content h2 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .about-mission-text {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 30px;
    }
}

@media (max-width: 320px) {
    .about-hero-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .about-hero-subtitle {
        font-size: 0.9rem;
    }

    .about-service-badge {
        font-size: 9px;
        padding: 6px 14px;
    }

    .about-story-text h2 {
        font-size: 1.4rem;
    }

    .about-story-text p {
        font-size: 0.9rem;
    }

    .about-story-visual {
        min-height: 220px;
        font-size: 3.5rem;
    }

    .about-section-title h2 {
        font-size: 1.5rem;
    }

    .about-section-title p {
        font-size: 0.9rem;
    }

    .about-value-icon {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }

    .about-value-card h3 {
        font-size: 1rem;
    }

    .about-value-card p {
        font-size: 0.85rem;
    }

    .about-founder-img {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .about-founder-name {
        font-size: 1.1rem;
    }

    .about-founder-role {
        font-size: 0.85rem;
    }

    .about-founder-desc {
        font-size: 0.85rem;
    }

    .about-stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .about-stat-number {
        font-size: 1.6rem;
    }

    .about-stat-text {
        font-size: 0.8rem;
    }

    .about-mission-content h2 {
        font-size: 1.6rem;
    }

    .about-mission-text {
        font-size: 0.9rem;
    }
}

       





/* Portfolio Page */

.portfolio-page {
    font-family: 'Comic Neue', cursive;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
    color: #1e293b;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Background Grid */
.pf-tech-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(215, 172, 56, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(215, 172, 56, 0.04) 1px, transparent 1px);
    background-size: 70px 70px;
    z-index: -1;
    animation: pfGridMove 30s linear infinite;
}

@keyframes pfGridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(70px, 70px); }
}

/* Service Badge */
.pf-service-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(215, 172, 56, 0.12), rgba(213, 172, 115, 0.08));
    border: 1px solid rgba(215, 172, 56, 0.25);
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    color: #d7ac38;
    margin-bottom: 24px;
    position: relative;
    backdrop-filter: blur(10px);
    animation: pfBadgeGlow 3s ease-in-out infinite;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes pfBadgeGlow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(215, 172, 56, 0.15);
    }
    50% {
        box-shadow: 0 6px 25px rgba(215, 172, 56, 0.25);
    }
}

/* Hero Section */
.pf-hero-section {
    padding: 100px 5% 80px;
    position: relative;
    text-align: center;
}

.pf-container {
    max-width: 1200px;
    margin: 0 auto;
}

.pf-hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
    line-height: 1.2;
    animation: pfFadeInUp 1.5s ease-out;
}

@keyframes pfFadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.pf-highlight {
    background: linear-gradient(135deg, #d7ac38 0%, #d5ac73 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.pf-hero-subtitle {
    font-size: 1.3rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto 40px;
    font-weight: 500;
    line-height: 1.6;
    animation: pfFadeInUp 1.5s ease-out 0.3s both;
}

/* Filter Buttons */
.pf-filter-section {
    text-align: center;
    margin-bottom: 60px;
}

.pf-filter-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    animation: pfFadeInUp 1.5s ease-out 0.6s both;
}

.pf-filter-btn {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(248, 250, 252, 0.9) 100%);
    border: 1px solid rgba(215, 172, 56, 0.2);
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Comic Neue', cursive;
    backdrop-filter: blur(10px);
}

.pf-filter-btn.active,
.pf-filter-btn:hover {
    background: linear-gradient(135deg, #d7ac38 0%, #d5ac73 100%);
    color: #ffffff;
    border-color: #d7ac38;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(215, 172, 56, 0.3);
}

/* Portfolio Grid */
.pf-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 60px;
}

.pf-portfolio-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.95) 100%);
    border: 1px solid rgba(215, 172, 56, 0.12);
    border-radius: 20px;
    padding: 25px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    backdrop-filter: blur(15px);
    box-shadow: 0 5px 20px rgba(15, 23, 42, 0.06);
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: pfCardEntry 0.8s ease-out forwards;
}

@keyframes pfCardEntry {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.pf-portfolio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #d7ac38, #d5ac73);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.pf-portfolio-card:hover::before {
    opacity: 1;
}

.pf-portfolio-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(215, 172, 56, 0.15);
    border-color: rgba(215, 172, 56, 0.2);
}

.pf-portfolio-image {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, rgba(215, 172, 56, 0.1) 0%, rgba(213, 172, 115, 0.05) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: rgba(215, 172, 56, 0.6);
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.pf-portfolio-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(215, 172, 56, 0.1), transparent);
    animation: pfImageShine 3s ease-in-out infinite;
}

@keyframes pfImageShine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.pf-portfolio-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.pf-portfolio-info p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.pf-portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.pf-portfolio-tag {
    background: rgba(215, 172, 56, 0.1);
    border: 1px solid rgba(215, 172, 56, 0.2);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    color: #d7ac38;
    transition: all 0.3s ease;
}

.pf-portfolio-tag:hover {
    background: #d7ac38;
    color: #ffffff;
    transform: scale(1.05);
}

.pf-portfolio-links {
    display: flex;
    gap: 12px;
    align-items: center;
}

.pf-portfolio-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #d7ac38;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border: 1px solid rgba(215, 172, 56, 0.2);
    border-radius: 20px;
    background: rgba(215, 172, 56, 0.05);
}

.pf-portfolio-link:hover {
    background: #d7ac38;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(215, 172, 56, 0.3);
}

/* Stats Section */
.pf-stats-section {
    padding: 80px 5%;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    text-align: center;
}

.pf-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.pf-stat-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(248, 250, 252, 0.9) 100%);
    border: 1px solid rgba(215, 172, 56, 0.12);
    border-radius: 20px;
    padding: 30px 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.pf-stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(215, 172, 56, 0.15);
}

.pf-stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #d7ac38;
    display: block;
    margin-bottom: 10px;
}

.pf-stat-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #64748b;
}

/* CTA Section */
.pf-cta-section {
    padding: 80px 5%;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    text-align: center;
}

.pf-cta-content h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
}

.pf-cta-content p {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.pf-cta-button {
    background: linear-gradient(135deg, #d7ac38 0%, #d5ac73 100%);
    color: #0a1f44;
    border: none;
    padding: 16px 35px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    font-family: 'Comic Neue', cursive;
    text-decoration: none;
    display: inline-block;
}

.pf-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(215, 172, 56, 0.3);
}

 /* Skills Section */
 .pf-skills-section {
    padding: 60px 5%;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    text-align: center;
}

.cp-skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.cp-skill-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(248, 250, 252, 0.9) 100%);
    border: 1px solid rgba(215, 172, 56, 0.1);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.cp-skill-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(215, 172, 56, 0.12);
}

.cp-skill-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
    animation: cpSkillBounce 2s ease-in-out infinite;
}

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

.cp-skill-name {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
}




/* Responsive Design */
@media (max-width: 1024px) {
    .pf-hero-title {
        font-size: 3.2rem;
    }

    .pf-hero-subtitle {
        font-size: 1.15rem;
    }

    .pf-portfolio-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }

    .pf-stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }

    .cp-skills-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }

    .pf-cta-content h2 {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .pf-hero-section {
        padding: 110px 5% 60px;
    }

    .pf-hero-title {
        font-size: 2.5rem;
        margin-bottom: 18px;
    }

    .pf-hero-subtitle {
        font-size: 1.05rem;
        margin-bottom: 30px;
    }

    .pf-service-badge {
        font-size: 11px;
        padding: 8px 20px;
    }

    .pf-filter-section {
        margin-bottom: 50px;
    }

    .pf-filter-buttons {
        gap: 12px;
    }

    .pf-filter-btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    .pf-portfolio-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 50px;
    }

    .pf-portfolio-card {
        padding: 20px;
    }

    .pf-portfolio-image {
        height: 160px;
        font-size: 3rem;
        margin-bottom: 18px;
    }

    .pf-portfolio-info h3 {
        font-size: 1.3rem;
    }

    .pf-portfolio-info p {
        font-size: 0.9rem;
    }

    .pf-portfolio-tag {
        font-size: 10px;
        padding: 3px 10px;
    }

    .pf-portfolio-link {
        font-size: 0.85rem;
        padding: 7px 14px;
    }

    .pf-stats-section,
    .pf-skills-section,
    .pf-cta-section {
        padding: 60px 5%;
    }

    .pf-stats-grid {
        gap: 25px;
        margin-top: 40px;
    }

    .pf-stat-number {
        font-size: 2.5rem;
    }

    .pf-stat-text {
        font-size: 1rem;
    }

    .cp-skills-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 18px;
        margin-top: 35px;
    }

    .cp-skill-card {
        padding: 18px;
    }

    .cp-skill-icon {
        font-size: 2.2rem;
    }

    .cp-skill-name {
        font-size: 0.95rem;
    }

    .pf-cta-content h2 {
        font-size: 2rem;
        margin-bottom: 18px;
    }

    .pf-cta-content p {
        font-size: 1.05rem;
        margin-bottom: 30px;
    }

    .pf-cta-button {
        padding: 14px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .pf-hero-section {
        padding: 100px 4% 50px;
    }

    .pf-hero-title {
        font-size: 2rem;
        margin-bottom: 16px;
    }

    .pf-hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }

    .pf-service-badge {
        font-size: 10px;
        padding: 7px 16px;
        letter-spacing: 0.3px;
    }

    .pf-filter-section {
        margin-bottom: 40px;
    }

    .pf-filter-buttons {
        gap: 10px;
    }

    .pf-filter-btn {
        padding: 9px 18px;
        font-size: 12px;
        border-radius: 20px;
    }

    .pf-portfolio-grid {
        gap: 20px;
        margin-top: 40px;
    }

    .pf-portfolio-card {
        padding: 18px;
        border-radius: 16px;
    }

    .pf-portfolio-image {
        height: 140px;
        font-size: 2.5rem;
        margin-bottom: 16px;
        border-radius: 12px;
    }

    .pf-portfolio-info h3 {
        font-size: 1.15rem;
        margin-bottom: 8px;
    }

    .pf-portfolio-info p {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }

    .pf-portfolio-tags {
        gap: 6px;
        margin-bottom: 16px;
    }

    .pf-portfolio-tag {
        font-size: 9px;
        padding: 3px 9px;
        border-radius: 12px;
    }

    .pf-portfolio-links {
        gap: 10px;
        flex-direction: column;
        align-items: stretch;
    }

    .pf-portfolio-link {
        font-size: 0.8rem;
        padding: 8px 12px;
        border-radius: 16px;
        justify-content: center;
    }

    .pf-stats-section,
    .pf-skills-section,
    .pf-cta-section {
        padding: 50px 4%;
    }

    .pf-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 35px;
    }

    .pf-stat-card {
        padding: 25px 18px;
        border-radius: 16px;
    }

    .pf-stat-number {
        font-size: 2.2rem;
        margin-bottom: 8px;
    }

    .pf-stat-text {
        font-size: 0.9rem;
    }

    .cp-skills-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-top: 30px;
    }

    .cp-skill-card {
        padding: 16px;
        border-radius: 12px;
    }

    .cp-skill-icon {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .cp-skill-name {
        font-size: 0.9rem;
    }

    .pf-cta-content h2 {
        font-size: 1.7rem;
        margin-bottom: 16px;
    }

    .pf-cta-content p {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }

    .pf-cta-button {
        padding: 13px 28px;
        font-size: 0.95rem;
        border-radius: 10px;
    }
}

@media (max-width: 320px) {
    .pf-hero-section {
        padding: 50px 4% 40px;
    }

    .pf-hero-title {
        font-size: 1.6rem;
        margin-bottom: 14px;
    }

    .pf-hero-subtitle {
        font-size: 0.85rem;
        margin-bottom: 20px;
    }

    .pf-service-badge {
        font-size: 9px;
        padding: 6px 14px;
    }

    .pf-filter-section {
        margin-bottom: 35px;
    }

    .pf-filter-buttons {
        gap: 8px;
    }

    .pf-filter-btn {
        padding: 8px 15px;
        font-size: 11px;
    }

    .pf-portfolio-grid {
        gap: 18px;
        margin-top: 35px;
    }

    .pf-portfolio-card {
        padding: 16px;
    }

    .pf-portfolio-image {
        height: 120px;
        font-size: 2rem;
        margin-bottom: 14px;
    }

    .pf-portfolio-info h3 {
        font-size: 1.05rem;
    }

    .pf-portfolio-info p {
        font-size: 0.8rem;
    }

    .pf-portfolio-tags {
        gap: 5px;
        margin-bottom: 14px;
    }

    .pf-portfolio-tag {
        font-size: 8px;
        padding: 2px 8px;
    }

    .pf-portfolio-link {
        font-size: 0.75rem;
        padding: 7px 10px;
    }

    .pf-stats-section,
    .pf-skills-section,
    .pf-cta-section {
        padding: 40px 4%;
    }

    .pf-stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 30px;
    }

    .pf-stat-card {
        padding: 22px 16px;
    }

    .pf-stat-number {
        font-size: 2rem;
    }

    .pf-stat-text {
        font-size: 0.85rem;
    }

    .cp-skills-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 25px;
    }

    .cp-skill-card {
        padding: 14px;
    }

    .cp-skill-icon {
        font-size: 1.8rem;
        margin-bottom: 8px;
    }

    .cp-skill-name {
        font-size: 0.85rem;
    }

    .pf-cta-content h2 {
        font-size: 1.5rem;
        margin-bottom: 14px;
    }

    .pf-cta-content p {
        font-size: 0.85rem;
        margin-bottom: 22px;
    }

    .pf-cta-button {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}











        /* contact page */

        .contact-page {
            font-family: 'Comic Neue', cursive;
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
            color: #1e293b;
            overflow-x: hidden;
            position: relative;
            min-height: 100vh;
        }

        /* Contact Grid Background */
        .contact-tech-grid {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(215, 172, 56, 0.04) 1px, transparent 1px),
                linear-gradient(90deg, rgba(215, 172, 56, 0.04) 1px, transparent 1px);
            background-size: 60px 60px;
            z-index: -3;
            animation: contactGridMove 25s linear infinite;
        }

        @keyframes contactGridMove {
            0% { transform: translate(0, 0); }
            100% { transform: translate(60px, 60px); }
        }

        /* Contact Badge */
        .contact-service-badge {
            display: inline-block;
            background: linear-gradient(135deg, rgba(215, 172, 56, 0.15), rgba(213, 172, 115, 0.1));
            border: 1px solid rgba(215, 172, 56, 0.3);
            padding: 10px 24px;
            border-radius: 30px;
            font-size: 13px;
            font-weight: 700;
            color: #d7ac38;
            margin-bottom: 24px;
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(15px);
            box-shadow: 0 4px 20px rgba(215, 172, 56, 0.15);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .contact-service-badge::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(215, 172, 56, 0.2), transparent);
            animation: contactBadgeShine 4s ease-in-out infinite;
        }

        @keyframes contactBadgeShine {
            0% { left: -100%; }
            50%, 100% { left: 100%; }
        }

        /* Hero Section */
        .contact-hero-section {
            padding: 80px 5% 60px;
            text-align: center;
            position: relative;
        }

        .contact-hero-title {
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 20px;
            color: #0f172a;
            line-height: 1.1;
            letter-spacing: -2px;
        }

        .contact-hero-title .contact-highlight {
            background: linear-gradient(135deg, #d7ac38 0%, #d5ac73 50%, #c9a366 100%);
            background-size: 300% 300%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: contactHighlightShine 4s ease-in-out infinite;
        }

        @keyframes contactHighlightShine {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .contact-hero-subtitle {
            font-size: 1.3rem;
            margin-bottom: 30px;
            color: #64748b;
            font-weight: 500;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }

        /* Contact Methods Section */
        .contact-methods-section {
            padding: 60px 5% 50px;
            position: relative;
        }

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

        .contact-section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .contact-section-title h2 {
            font-size: 2.8rem;
            font-weight: 900;
            color: #0f172a;
            margin-bottom: 15px;
        }

        .contact-section-title h2 .contact-highlight {
            background: linear-gradient(135deg, #d7ac38 0%, #d5ac73 50%, #c9a366 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .contact-methods-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }

        .contact-method-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.98) 100%);
            border: 1px solid rgba(215, 172, 56, 0.15);
            border-radius: 20px;
            padding: 35px 30px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            backdrop-filter: blur(20px);
            box-shadow: 0 8px 30px rgba(15, 23, 42, 0.06);
            cursor: pointer;
        }

        .contact-method-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 45px rgba(215, 172, 56, 0.2);
            border-color: rgba(215, 172, 56, 0.3);
        }

        .contact-method-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #d7ac38 0%, #d5ac73 100%);
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.2rem;
            margin: 0 auto 20px;
            color: white;
            box-shadow: 0 8px 25px rgba(215, 172, 56, 0.25);
        }

        .contact-method-card h3 {
            font-size: 1.4rem;
            font-weight: 800;
            color: #0f172a;
            margin-bottom: 12px;
        }

        .contact-method-card p {
            color: #64748b;
            font-size: 1rem;
            font-weight: 500;
            margin-bottom: 15px;
        }

        .contact-method-link {
            color: #d7ac38;
            font-weight: 700;
            text-decoration: none;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }

        .contact-method-link:hover {
            color: #c9a366;
            transform: scale(1.05);
        }

        /* Contact Form Section */
        .contact-form-section {
            padding: 50px 5% 60px;
            background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
            position: relative;
        }

        .contact-form-container {
            max-width: 800px;
            margin: 0 auto;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.98) 100%);
            border: 1px solid rgba(215, 172, 56, 0.15);
            border-radius: 24px;
            padding: 45px 40px;
            backdrop-filter: blur(20px);
            box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
        }

        .contact-form {
            display: grid;
            gap: 25px;
        }

        .contact-form-group {
            display: grid;
            gap: 8px;
        }

        .contact-form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 25px;
        }

        .contact-form label {
            font-weight: 700;
            color: #1e293b;
            font-size: 1rem;
        }

        .contact-form input,
        .contact-form textarea,
        .contact-form select {
            padding: 15px 18px;
            border: 2px solid rgba(215, 172, 56, 0.15);
            border-radius: 12px;
            font-size: 1rem;
            font-family: 'Comic Neue', cursive;
            transition: all 0.3s ease;
            background: rgba(255, 255, 255, 0.9);
            color: #1e293b;
        }

        .contact-form input:focus,
        .contact-form textarea:focus,
        .contact-form select:focus {
            outline: none;
            border-color: #d7ac38;
            box-shadow: 0 0 0 3px rgba(215, 172, 56, 0.1);
            background: rgba(255, 255, 255, 1);
        }

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

        .contact-submit-btn {
            background: linear-gradient(135deg, #d7ac38 0%, #d5ac73 100%);
            color: white;
            border: none;
            padding: 18px 40px;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.4s ease;
            font-family: 'Comic Neue', cursive;
            box-shadow: 0 8px 25px rgba(215, 172, 56, 0.3);
            position: relative;
            overflow: hidden;
        }

        .contact-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: all 0.6s ease;
        }

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

        .contact-submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(215, 172, 56, 0.4);
        }

        /* Office Info Section */
        .contact-office-section {
            padding: 60px 5% 50px;
            position: relative;
        }

        .contact-office-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 40px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .contact-office-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.98) 100%);
            border: 1px solid rgba(215, 172, 56, 0.15);
            border-radius: 20px;
            padding: 35px 30px;
            transition: all 0.4s ease;
            backdrop-filter: blur(20px);
            box-shadow: 0 8px 30px rgba(15, 23, 42, 0.06);
        }

        .contact-office-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 18px 40px rgba(215, 172, 56, 0.15);
            border-color: rgba(215, 172, 56, 0.25);
        }

        .contact-office-card h3 {
            font-size: 1.5rem;
            font-weight: 800;
            color: #0f172a;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .contact-office-icon {
            font-size: 1.8rem;
            color: #d7ac38;
        }

        .contact-office-info {
            display: grid;
            gap: 15px;
        }

        .contact-office-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-size: 1rem;
            color: #64748b;
            font-weight: 500;
        }

        .contact-office-item-icon {
            color: #d7ac38;
            font-size: 1.1rem;
            margin-top: 2px;
        }

        /* FAQ Section */
        .contact-faq-section {
            padding: 60px 5% 50px;
            background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
        }

        .contact-faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .contact-faq-item {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.98) 100%);
            border: 1px solid rgba(215, 172, 56, 0.15);
            border-radius: 16px;
            margin-bottom: 20px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .contact-faq-question {
            padding: 25px 30px;
            background: transparent;
            border: none;
            width: 100%;
            text-align: left;
            font-size: 1.1rem;
            font-weight: 700;
            color: #0f172a;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-family: 'Comic Neue', cursive;
        }

        .contact-faq-question:hover {
            background: rgba(215, 172, 56, 0.05);
        }

        .contact-faq-icon {
            color: #d7ac38;
            transition: transform 0.3s ease;
        }

        .contact-faq-answer {
            padding: 0 30px 25px;
            color: #64748b;
            font-size: 1rem;
            line-height: 1.6;
            font-weight: 500;
            display: none;
        }

        .contact-faq-item.active .contact-faq-icon {
            transform: rotate(180deg);
        }

        .contact-faq-item.active .contact-faq-answer {
            display: block;
        }

        /* Success Message */
        .contact-success-message {
            display: none;
            background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(22, 163, 74, 0.05));
            border: 1px solid rgba(34, 197, 94, 0.3);
            color: #15803d;
            padding: 20px;
            border-radius: 12px;
            margin-top: 20px;
            text-align: center;
            font-weight: 600;
        }


/* Responsive Design */
@media (max-width: 1024px) {
    .contact-hero-title {
        font-size: 2.8rem;
    }

    .contact-hero-subtitle {
        font-size: 1.1rem;
    }

    .contact-section-title h2 {
        font-size: 2.3rem;
    }

    .contact-methods-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }

    .contact-form-container {
        padding: 40px 35px;
    }

    .contact-office-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .contact-hero-section {
        padding: 60px 5% 40px;
    }

    .contact-hero-title {
        font-size: 2.2rem;
        letter-spacing: -1.2px;
    }

    .contact-hero-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .contact-service-badge {
        font-size: 11px;
        padding: 8px 20px;
    }

    .contact-methods-section,
    .contact-form-section,
    .contact-office-section,
    .contact-faq-section {
        padding: 50px 5% 40px;
    }

    .contact-section-title {
        margin-bottom: 40px;
    }

    .contact-section-title h2 {
        font-size: 1.9rem;
    }

    .contact-methods-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }

    .contact-method-card {
        padding: 30px 25px;
    }

    .contact-method-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }

    .contact-method-card h3 {
        font-size: 1.2rem;
    }

    .contact-method-card p {
        font-size: 0.95rem;
    }

    .contact-method-link {
        font-size: 1rem;
    }

    .contact-form-container {
        padding: 35px 30px;
        border-radius: 20px;
    }

    .contact-form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-form input,
    .contact-form textarea,
    .contact-form select {
        padding: 13px 16px;
        font-size: 0.95rem;
    }

    .contact-submit-btn {
        padding: 16px 35px;
        font-size: 1rem;
    }

    .contact-office-card {
        padding: 30px 25px;
    }

    .contact-office-card h3 {
        font-size: 1.3rem;
    }

    .contact-office-item {
        font-size: 0.95rem;
    }

    .contact-faq-question {
        padding: 20px 25px;
        font-size: 1rem;
    }

    .contact-faq-answer {
        padding: 0 25px 20px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .contact-hero-section {
        padding: 50px 4% 30px;
    }

    .contact-hero-title {
        font-size: 1.8rem;
        letter-spacing: -0.8px;
        margin-bottom: 16px;
    }

    .contact-hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .contact-service-badge {
        font-size: 10px;
        padding: 7px 16px;
        letter-spacing: 0.3px;
    }

    .contact-methods-section,
    .contact-form-section,
    .contact-office-section,
    .contact-faq-section {
        padding: 40px 4% 30px;
    }

    .contact-section-title {
        margin-bottom: 30px;
    }

    .contact-section-title h2 {
        font-size: 1.6rem;
        margin-bottom: 12px;
    }

    .contact-methods-grid {
        gap: 16px;
        margin-bottom: 30px;
    }

    .contact-method-card {
        padding: 25px 20px;
        border-radius: 16px;
    }

    .contact-method-icon {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
        border-radius: 14px;
        margin-bottom: 16px;
    }

    .contact-method-card h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .contact-method-card p {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }

    .contact-method-link {
        font-size: 0.95rem;
    }

    .contact-form-container {
        padding: 30px 20px;
        border-radius: 18px;
    }

    .contact-form {
        gap: 20px;
    }

    .contact-form-group {
        gap: 6px;
    }

    .contact-form label {
        font-size: 0.95rem;
    }

    .contact-form input,
    .contact-form textarea,
    .contact-form select {
        padding: 12px 14px;
        font-size: 0.9rem;
        border-radius: 10px;
    }

    .contact-form textarea {
        min-height: 100px;
    }

    .contact-submit-btn {
        padding: 14px 30px;
        font-size: 0.95rem;
        border-radius: 10px;
    }

    .contact-office-grid {
        gap: 25px;
    }

    .contact-office-card {
        padding: 25px 20px;
        border-radius: 16px;
    }

    .contact-office-card h3 {
        font-size: 1.2rem;
        margin-bottom: 16px;
        gap: 10px;
    }

    .contact-office-icon {
        font-size: 1.5rem;
    }

    .contact-office-info {
        gap: 12px;
    }

    .contact-office-item {
        font-size: 0.9rem;
        gap: 10px;
    }

    .contact-office-item-icon {
        font-size: 1rem;
    }

    .contact-faq-item {
        margin-bottom: 15px;
        border-radius: 14px;
    }

    .contact-faq-question {
        padding: 18px 20px;
        font-size: 0.95rem;
    }

    .contact-faq-answer {
        padding: 0 20px 18px;
        font-size: 0.9rem;
    }

    .contact-success-message {
        padding: 16px;
        font-size: 0.9rem;
        margin-top: 16px;
    }
}

@media (max-width: 320px) {
    .contact-hero-section {
        padding: 40px 4% 25px;
    }

    .contact-hero-title {
        font-size: 1.5rem;
        letter-spacing: -0.5px;
        margin-bottom: 12px;
    }

    .contact-hero-subtitle {
        font-size: 0.85rem;
        margin-bottom: 18px;
    }

    .contact-service-badge {
        font-size: 9px;
        padding: 6px 14px;
    }

    .contact-methods-section,
    .contact-form-section,
    .contact-office-section,
    .contact-faq-section {
        padding: 35px 4% 25px;
    }

    .contact-section-title {
        margin-bottom: 25px;
    }

    .contact-section-title h2 {
        font-size: 1.4rem;
        margin-bottom: 10px;
    }

    .contact-methods-grid {
        gap: 14px;
        margin-bottom: 25px;
    }

    .contact-method-card {
        padding: 20px 16px;
    }

    .contact-method-icon {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
        margin-bottom: 14px;
    }

    .contact-method-card h3 {
        font-size: 1rem;
    }

    .contact-method-card p {
        font-size: 0.85rem;
    }

    .contact-method-link {
        font-size: 0.9rem;
    }

    .contact-form-container {
        padding: 25px 16px;
    }

    .contact-form {
        gap: 18px;
    }

    .contact-form label {
        font-size: 0.9rem;
    }

    .contact-form input,
    .contact-form textarea,
    .contact-form select {
        padding: 11px 12px;
        font-size: 0.85rem;
    }

    .contact-form textarea {
        min-height: 90px;
    }

    .contact-submit-btn {
        padding: 13px 25px;
        font-size: 0.9rem;
    }

    .contact-office-grid {
        gap: 20px;
    }

    .contact-office-card {
        padding: 22px 18px;
    }

    .contact-office-card h3 {
        font-size: 1.1rem;
        margin-bottom: 14px;
        gap: 8px;
    }

    .contact-office-icon {
        font-size: 1.3rem;
    }

    .contact-office-info {
        gap: 10px;
    }

    .contact-office-item {
        font-size: 0.85rem;
        gap: 8px;
    }

    .contact-office-item-icon {
        font-size: 0.9rem;
    }

    .contact-faq-item {
        margin-bottom: 12px;
    }

    .contact-faq-question {
        padding: 16px 18px;
        font-size: 0.9rem;
    }

    .contact-faq-answer {
        padding: 0 18px 16px;
        font-size: 0.85rem;
    }

    .contact-success-message {
        padding: 14px;
        font-size: 0.85rem;
        margin-top: 14px;
    }
}
       
       
       


        .privacy-policy-wrapper * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        .privacy-policy-wrapper {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            color: #333;
            line-height: 1.6;
            padding: 100px;
            min-height: 100vh;
        }
        
        /* Main Container */
        .privacy-policy-container {
            max-width: 900px;
            margin: 0 auto;
            background: white;
            padding: 50px;
            border-radius: 15px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        }
        
        .privacy-policy-title {
            font-size: 42px;
            color: #0a1f44;
            margin-bottom: 10px;
            text-align: center;
            font-weight: 700;
        }
        
        .privacy-effective-date {
            text-align: center;
            color: #666;
            font-size: 16px;
            margin-bottom: 30px;
            font-style: italic;
        }
        
        .privacy-intro-text {
            font-size: 17px;
            color: #555;
            margin-bottom: 40px;
            line-height: 1.8;
            text-align: center;
            padding: 0 20px;
        }
        
        .privacy-section {
            margin-bottom: 40px;
        }
        
        .privacy-section-title {
            font-size: 26px;
            color: #0a1f44;
            margin-bottom: 15px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .privacy-section-number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 35px;
            height: 35px;
            background: linear-gradient(135deg, #d7ac38 0%, #f4d03f 100%);
            color: white;
            border-radius: 50%;
            font-size: 18px;
            font-weight: 700;
            flex-shrink: 0;
        }
        
        .privacy-section-content {
            color: #555;
            font-size: 16px;
            line-height: 1.8;
            margin-left: 47px;
        }
        
        .privacy-section-content ul {
            list-style: none;
            padding: 0;
            margin-top: 15px;
        }
        
        .privacy-section-content ul li {
            padding: 10px 0;
            padding-left: 30px;
            position: relative;
        }
        
        .privacy-section-content ul li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #d7ac38;
            font-weight: bold;
            font-size: 18px;
        }
        
        .privacy-contact-box {
            background: linear-gradient(135deg, #0a1f44 0%, #1e3a5f 100%);
            color: white;
            padding: 30px;
            border-radius: 12px;
            margin-top: 40px;
            text-align: center;
        }
        
        .privacy-contact-box h3 {
            font-size: 24px;
            margin-bottom: 20px;
            color: #d7ac38;
        }
        
        .privacy-contact-info {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
            margin-top: 20px;
        }
        
        .privacy-contact-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 16px;
        }
        
        .privacy-contact-item i {
            color: #d7ac38;
            font-size: 20px;
        }
        
        .privacy-contact-item a {
            color: white;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .privacy-contact-item a:hover {
            color: #d7ac38;
        }
        
        .privacy-agreement-text {
            background: #f8f9fa;
            padding: 20px;
            border-left: 4px solid #d7ac38;
            margin-top: 40px;
            font-style: italic;
            color: #666;
        }
        
        /* Responsive Styles */
        @media (max-width: 1024px) {
            .privacy-policy-container {
                padding: 40px;
            }
            
            .privacy-policy-title {
                font-size: 38px;
            }
        }
        
        @media (max-width: 768px) {
            .privacy-policy-wrapper {
                padding: 15px;
            }
            
            .privacy-policy-container {
                padding: 30px 20px;
                border-radius: 10px;
            }
            
            .privacy-policy-title {
                font-size: 32px;
                line-height: 1.2;
            }
            
            .privacy-effective-date {
                font-size: 14px;
                margin-bottom: 25px;
            }
            
            .privacy-intro-text {
                font-size: 15px;
                padding: 0 10px;
                margin-bottom: 30px;
            }
            
            .privacy-section {
                margin-bottom: 30px;
            }
            
            .privacy-section-title {
                font-size: 22px;
                flex-wrap: wrap;
            }
            
            .privacy-section-content {
                margin-left: 0;
                font-size: 15px;
                margin-top: 15px;
            }
            
            .privacy-section-number {
                width: 32px;
                height: 32px;
                font-size: 16px;
            }
            
            .privacy-section-content ul li {
                padding-left: 25px;
            }
            
            .privacy-contact-box {
                padding: 25px 20px;
            }
            
            .privacy-contact-box h3 {
                font-size: 20px;
                margin-bottom: 15px;
            }
            
            .privacy-contact-info {
                flex-direction: column;
                gap: 15px;
                align-items: center;
            }
            
            .privacy-contact-item {
                font-size: 14px;
            }
            
            .privacy-agreement-text {
                padding: 15px;
                font-size: 14px;
            }
        }
        
        @media (max-width: 480px) {
            .privacy-policy-wrapper {
                padding: 10px;
            }
            
            .privacy-policy-container {
                padding: 25px 15px;
            }
            
            .privacy-policy-title {
                font-size: 28px;
            }
            
            .privacy-intro-text {
                font-size: 14px;
            }
            
            .privacy-section-title {
                font-size: 20px;
                gap: 8px;
            }
            
            .privacy-section-content {
                font-size: 14px;
            }
            
            .privacy-section-number {
                width: 28px;
                height: 28px;
                font-size: 14px;
            }
            
            .privacy-contact-box {
                padding: 20px 15px;
            }
            
            .privacy-contact-box h3 {
                font-size: 18px;
            }
            
            .privacy-contact-item {
                font-size: 13px;
            }
            
            .privacy-contact-item i {
                font-size: 16px;
            }
        }
        
        @media (max-width: 360px) {
            .privacy-policy-title {
                font-size: 24px;
            }
            
            .privacy-section-title {
                font-size: 18px;
            }
            
            .privacy-section-content ul li {
                padding-left: 20px;
                font-size: 13px;
            }
        }
   










        .tc-wrapper * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        .tc-wrapper {
            font-family: 'Inter', 'Arial', sans-serif;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            color: #333;
            line-height: 1.7;
            min-height: 100vh;
            padding: 20px 15px;
        }
        
        /* Main Container */
        .tc-container {
            max-width: 950px;
            margin: 0 auto;
            background: white;
            padding: 40px 30px;
            border-radius: 25px;
            box-shadow: 0 25px 80px rgba(0, 0, 0, 0.1);
        }
        
        .tc-page-title {
            font-size: 36px;
            color: #0a1f44;
            margin-bottom: 15px;
            text-align: center;
            font-weight: 800;
        }
        
        .tc-effective-date {
            text-align: center;
            color: #666;
            font-size: 16px;
            margin-bottom: 30px;
            font-style: italic;
            font-weight: 300;
        }
        
        .tc-intro-text {
            font-size: 17px;
            color: #555;
            margin-bottom: 40px;
            line-height: 1.9;
            text-align: center;
            padding: 0 15px;
            font-weight: 300;
        }
        
        .tc-section {
            margin-bottom: 35px;
            background: rgba(248, 249, 250, 0.8);
            padding: 20px;
            border-radius: 18px;
            border: 1px solid rgba(215, 172, 56, 0.15);
            transition: all 0.3s ease;
        }
        
        .tc-section:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            border-color: rgba(215, 172, 56, 0.3);
        }
        
        .tc-section-title {
            font-size: 22px;
            color: #0a1f44;
            margin-bottom: 15px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .tc-section-number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            background: linear-gradient(135deg, #d7ac38 0%, #f4d03f 100%);
            color: white;
            border-radius: 12px;
            font-size: 18px;
            font-weight: 800;
            box-shadow: 0 8px 25px rgba(215, 172, 56, 0.4);
            flex-shrink: 0;
        }
        
        .tc-section-content {
            color: #555;
            font-size: 16px;
            line-height: 1.8;
            margin-left: 50px;
            font-weight: 300;
        }
        
        .tc-section-content ul {
            list-style: none;
            padding: 0;
            margin-top: 15px;
        }
        
        .tc-section-content ul li {
            padding: 10px 0;
            padding-left: 30px;
            position: relative;
        }
        
        .tc-section-content ul li:before {
            content: "◆";
            position: absolute;
            left: 0;
            color: #d7ac38;
            font-weight: bold;
            font-size: 14px;
        }
        
        .tc-highlight-box {
            background: linear-gradient(135deg, #ffe6e6 0%, #fff0f0 100%);
            border-left: 5px solid #e74c3c;
            padding: 20px;
            margin: 20px 0;
            border-radius: 12px;
        }
        
        .tc-highlight-box .tc-highlight-title {
            font-weight: 700;
            color: #c0392b;
            margin-bottom: 10px;
            font-size: 18px;
        }
        
        .tc-contact-box {
            background: linear-gradient(135deg, #0a1f44 0%, #1e3a5f 100%);
            color: white;
            padding: 30px 20px;
            border-radius: 20px;
            margin-top: 40px;
            text-align: center;
            box-shadow: 0 20px 60px rgba(10, 31, 68, 0.3);
        }
        
        .tc-contact-box h3 {
            font-size: 24px;
            margin-bottom: 20px;
            color: #d7ac38;
            font-weight: 700;
        }
        
        .tc-contact-info {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
            margin-top: 20px;
        }
        
        .tc-contact-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 16px;
            padding: 12px 20px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        
        .tc-contact-item:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }
        
        .tc-contact-item i {
            color: #d7ac38;
            font-size: 20px;
        }
        
        .tc-contact-item a {
            color: white;
            text-decoration: none;
            transition: color 0.3s ease;
            font-weight: 500;
        }
        
        .tc-contact-item a:hover {
            color: #d7ac38;
        }
        
        .tc-agreement-text {
            background: #f8f9fa;
            padding: 20px;
            border-left: 5px solid #d7ac38;
            margin-top: 40px;
            font-style: italic;
            color: #666;
            border-radius: 12px;
            font-size: 16px;
        }
        
        /* Tablet View (768px - 1024px) */
        @media (max-width: 1024px) {
            .tc-container {
                padding: 35px 25px;
            }
            
            .tc-page-title {
                font-size: 32px;
            }
            
            .tc-section-title {
                font-size: 20px;
            }
        }
        
        /* Mobile View (max 768px) */
        @media (max-width: 768px) {
            .tc-wrapper {
                padding: 15px 10px;
            }
            
            .tc-container {
                padding: 30px 20px;
                border-radius: 20px;
            }
            
            .tc-page-title {
                font-size: 28px;
            }
            
            .tc-effective-date {
                font-size: 14px;
            }
            
            .tc-intro-text {
                font-size: 15px;
                padding: 0 5px;
            }
            
            .tc-section {
                padding: 15px;
                margin-bottom: 25px;
            }
            
            .tc-section-title {
                font-size: 18px;
                gap: 10px;
                flex-wrap: wrap;
            }
            
            .tc-section-number {
                width: 32px;
                height: 32px;
                font-size: 16px;
            }
            
            .tc-section-content {
                margin-left: 0;
                font-size: 15px;
                margin-top: 10px;
            }
            
            .tc-section-content ul li {
                padding-left: 25px;
                font-size: 14px;
            }
            
            .tc-highlight-box {
                padding: 15px;
                font-size: 14px;
            }
            
            .tc-highlight-box .tc-highlight-title {
                font-size: 16px;
            }
            
            .tc-contact-box {
                padding: 25px 15px;
            }
            
            .tc-contact-box h3 {
                font-size: 20px;
            }
            
            .tc-contact-info {
                flex-direction: column;
                gap: 15px;
            }
            
            .tc-contact-item {
                justify-content: center;
                font-size: 14px;
                padding: 10px 15px;
            }
            
            .tc-contact-item i {
                font-size: 18px;
            }
            
            .tc-agreement-text {
                padding: 15px;
                font-size: 14px;
            }
        }
        
        /* Small Mobile View (max 480px) */
        @media (max-width: 480px) {
            .tc-page-title {
                font-size: 24px;
            }
            
            .tc-effective-date {
                font-size: 13px;
            }
            
            .tc-intro-text {
                font-size: 14px;
            }
            
            .tc-section-title {
                font-size: 16px;
            }
            
            .tc-section-content {
                font-size: 14px;
            }
            
            .tc-contact-item a {
                font-size: 13px;
                word-break: break-word;
            }
        }
   

     
