 :root {
            --primary: #2563eb;
            --primary-dark: #1d4ed8;
            --secondary: #00f2ff;
            --dark: #0f172a;
            --light: #f8fafc;
            --gray: #64748b;
            --accent: #8b5cf6;
            --tech-gradient: linear-gradient(135deg, var(--primary), var(--secondary));
            --success: #10b981;
            --warning: #f59e0b;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: linear-gradient(135deg, #0f172a, #1e293b);
            color: var(--light);
            line-height: 1.6;
            overflow-x: hidden;
            position: relative;
            min-height: 100vh;
        }

        body::before {
            content: "";
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background:
                radial-gradient(circle at 10% 20%, rgba(37, 99, 235, 0.1) 0%, transparent 20%),
                radial-gradient(circle at 90% 80%, rgba(6, 182, 212, 0.1) 0%, transparent 20%);
            z-index: -1;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-padding {
            padding: 45px 0;
        }

        .section-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--tech-gradient);
            border-radius: 2px;
        }

        /* ===== Header Styles ===== */
        header {
            background: rgba(15, 23, 42, 0.85);
            backdrop-filter: blur(10px);
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
            border-bottom: 1px solid rgba(100, 116, 139, 0.2);
        }


        .logo {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--light);
            text-decoration: none;
            display: flex;
            align-items: center;    
        }

        .logo span {
            color: var(--secondary);
        }

        .logo .tech {
            color: var(--secondary);
        }

        .logo i {
            margin-right: 10px;
            color: var(--secondary);
            font-size: 1.5rem;
        }
        .cta-button {
            background: var(--tech-gradient);
            color: white;
            padding: 10px 20px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(37, 99, 235, 0.6);
        }
       
        /* Mobile Development Section */
        .mobile-section {
            padding: 150px 0 100px;
            position: relative;
        }
       
        /* Mobile Excellence Hero Section */
        .mobile-excellence-hero {
            display: flex;
            align-items: center;
            gap: 50px;
            margin-bottom: 80px;
            padding: 40px;
            background: rgba(15, 23, 42, 0.4);
            border-radius: 20px;
            border: 1px solid rgba(100, 116, 139, 0.2);
        }
       
        .excellence-content {
            flex: 1;
            min-width: 300px;
        }
       
        .excellence-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 3rem;
            margin-bottom: 25px;
            background: var(--tech-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
        }
       
        .excellence-description {
            font-size: 1.1rem;
            color: #cbd5e1;
            line-height: 1.8;
        }
       
        .excellence-image-container {
            flex: 1;
            min-width: 300px;
            height: 400px;
            border-radius: 15px;
            overflow: hidden;
            border: 2px solid rgba(0, 242, 255, 0.2);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
       
        .excellence-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            transition: transform 0.3s ease;
        }
       
        .excellence-image-container:hover .excellence-image {
            transform: scale(1.05);
        }
       
        .mobile-hero {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 80px;
        }
       
        .hero-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 3.5rem;
            margin-bottom: 20px;
            background: var(--tech-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
        }
       
        .hero-subtitle {
            font-size: 1.2rem;
            color: var(--secondary);
            margin-bottom: 30px;
        }
       
        .hero-description {
            font-size: 1.1rem;
            color: #cbd5e1;
            margin-bottom: 40px;
            line-height: 1.8;
        }
       
        .mobile-content {
            display: flex;
            flex-wrap: wrap;
            gap: 50px;
            margin-bottom: 80px;
        }
       
        .mobile-info {
            flex: 1;
            min-width: 300px;
        }
       
        .mobile-phone-container {
            flex: 1;
            min-width: 300px;
            height: 500px;
            position: relative;
            perspective: 1000px;
            background: transparent;
        }
       
        .phone-controls {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
            display: flex;
            gap: 10px;
        }
       
        .phone-btn {
            background: rgba(199, 206, 223, 0.7);
            border: 1px solid var(--secondary);
            color: var(--light);
            padding: 8px 15px;
            border-radius: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }
       
        .phone-btn:hover {
            background: var(--tech-gradient);
        }
       
        .features-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-bottom: 80px;
        }
       
        .feature-card {
            background: rgba(15, 23, 42, 0.6);
            border-radius: 15px;
            padding: 30px;
            border: 1px solid rgba(100, 116, 139, 0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
        }
       
        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--tech-gradient);
        }
       
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(37, 99, 235, 0.3);
        }
       
        .feature-icon {
            font-size: 2.5rem;
            color: var(--secondary);
            margin-bottom: 20px;
        }
       
        .feature-title {
            font-size: 1.5rem;
            margin-bottom: 15px;
            font-weight: 600;
        }
       
        .feature-text {
            color: #94a3b8;
            line-height: 1.7;
        }
       
        .info-display {
            background: rgba(15, 23, 42, 0.7);
            border-radius: 15px;
            padding: 30px;
            margin-top: 30px;
            border: 1px solid rgba(100, 116, 139, 0.2);
            min-height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            text-align: center;
        }
       
        .info-title {
            font-size: 1.8rem;
            margin-bottom: 15px;
            font-family: 'Orbitron', sans-serif;
            color: var(--secondary);
        }
       
        .info-description {
            color: #cbd5e1;
            line-height: 1.7;
            max-width: 600px;
        }
       
        /* Technology Stack Section */
        .tech-section {
            background: rgba(10, 10, 26, 0.7);
            border-radius: 10px;
            padding: 60px;
            margin-bottom: 60px;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }
       
        .tech-section h2 {
            text-align: center;
            color: var(--secondary);
            margin-bottom: 40px;
            font-family: 'Orbitron', sans-serif;
        }
       
        .tech-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
        }
       
        .tech-category {
            text-align: center;
        }
       
        .tech-category h3 {
            color: var(--light);
            margin-bottom: 20px;
            font-size: 1.3rem;
            font-family: 'Orbitron', sans-serif;
        }
       
        .tech-items {
            display: flex;
            flex-direction: column;
        }
       
        .tech-item {
            background: rgba(255, 255, 255, 0.05);
            padding: 12px 15px;
            border-radius: 8px;
            margin-top: 33px;
            color: var(--gray);
            transition: all 0.3s ease;
        }

        .tech-itemm {
            background: rgba(255, 255, 255, 0.05);
            padding: 12px 15px;
            border-radius: 8px;
            color: var(--gray);
            transition: all 0.3s ease;
        }
       
       
        .tech-item:hover {
            background: rgba(255, 255, 255, 0.08);
            color: var(--light);
            transform: translateY(-3px);
        }


          /* ===== Dropdown Styles ===== */
        .dropdown {
            position: relative;
            display: inline-block;
        }

        .dropdown-toggle {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .dropdown-toggle i {
            font-size: 0.8rem;
            transition: transform 0.3s ease;
        }

        .dropdown:hover .dropdown-toggle i {
            transform: rotate(180deg);
        }

        .dropdown-content {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background: rgba(15, 23, 42, 0.98);
            backdrop-filter: blur(15px);
            min-width: 280px;
            border-radius: 8px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
            border: 1px solid rgba(100, 116, 139, 0.3);
            z-index: 1000;
            padding: 8px 0;
            margin-top: 8px;
            overflow: hidden;
        }

        .dropdown:hover .dropdown-content {
            display: block;
            animation: fadeInUp 0.3s ease;
        }

        .dropdown-content a {
            display: block;
            padding: 12px 20px;
            color: var(--light);
            text-decoration: none;
            transition: all 0.3s ease;
            font-weight: 500;
            font-size: 0.95rem;
            border-left: 4px solid transparent;
            margin: 2px 8px;
            border-radius: 4px;
        }

        .dropdown-content a:hover {
            background: rgba(37, 99, 235, 0.15);
            color: var(--secondary);
            border-left: 4px solid var(--secondary);
            transform: translateX(5px);
        }

        .dropdown-scroll {
    max-height: 300px; /* Slightly less than parent to account for padding */
    overflow-y: auto; /* Enable vertical scrolling */
    padding: 8px 0; /* Add padding to scroll container */
}

/* Custom scrollbar styling */
.dropdown-scroll::-webkit-scrollbar {
    width: 6px;
}

.dropdown-scroll::-webkit-scrollbar-track {
    background: rgba(15, 23, 42, 0.5);
    border-radius: 3px;
}

.dropdown-scroll::-webkit-scrollbar-thumb {
    background: var(--secondary);
    border-radius: 3px;
}

.dropdown-scroll::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

       
        .cta-container {
            background: var(--tech-gradient);
            border-radius: 20px;
            padding: 60px 40px;
            text-align: center;
            margin-bottom: 80px;
        }
       
        .cta-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
       
        .cta-description {
            max-width: 700px;
            margin: 0 auto 30px;
            font-size: 1.1rem;
            line-height: 1.7;
        }
       
        .cta-button-large {
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            color: white;
            padding: 15px 40px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
            display: inline-block;
            text-decoration: none;
            
        }
       
        .cta-button-large:hover {
            transform: translateY(-3px);
            background: rgba(15, 23, 42, 0.9);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
        }
       
        /* Service Types Section */
        .service-types {
            margin-bottom: 80px;
        }
       
        .service-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }
       
        .service-card {
            background: rgba(15, 23, 42, 0.6);
            border-radius: 15px;
            padding: 30px;
            border: 1px solid rgba(100, 116, 139, 0.2);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
       
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--tech-gradient);
        }
       
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(37, 99, 235, 0.3);
        }
       
        .service-icon {
            font-size: 2.5rem;
            color: var(--secondary);
            margin-bottom: 20px;
        }
       
        .service-title {
            font-size: 1.5rem;
            margin-bottom: 15px;
            font-weight: 600;
        }
       
        .service-description {
            color: #94a3b8;
            line-height: 1.7;
        }
       
        /* Process Section */
        /* Process Section */
        .process-section {
            margin-bottom: 60px;
        }
       
        .process-steps {
            display: flex;
            justify-content: space-between;
            position: relative;
            margin-top: 50px;
        }
       
        .process-steps::before {
            content: '';
            position: absolute;
            top: 40px;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            z-index: 1;
        }
       
        .process-step {
            text-align: center;
            position: relative;
            z-index: 2;
            flex: 1;
        }
       
        .step-number {
            width: 80px;
            height: 80px;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--dark);
            position: relative;
        }
       
        .step-title {
            font-size: 1.2rem;
            color: var(--light);
            margin-bottom: 10px;
        }
       
        .step-description {
            color: var(--gray);
            font-size: 0.95rem;
        }

        /* Challenges Section */
        .challenges-section {
            margin-bottom: 80px;
        }
       
        .challenges-list {
            width: 100%;
            margin: 0 auto;
        }
       
        .challenge-item {
            background: rgba(15, 23, 42, 0.6);
            border-radius: 10px;
            padding: 20px;
            margin-bottom: 15px;
            border-left: 4px solid var(--primary);
            display: flex;
            align-items: center;
        }
       
        .challenge-icon {
            color: #ef4444;
            margin-right: 15px;
            font-size: 1.2rem;
        }
       
        /* Impact Section */
        .impact-section {
    margin-bottom: 80px;
}

.impact-container {
    background: rgba(15, 23, 42, 0.5);
    border-radius: 20px;
    padding: 50px;
    border: 1px solid rgba(100, 116, 139, 0.2);
}

.impact-title {
    text-align: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2rem;
    margin-bottom: 50px;
    background: var(--tech-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.impact-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.impact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.impact-icon {
    color: var(--success);
    margin-right: 15px;
    font-size: 1.2rem;
    margin-top: 3px;
}

.impact-text {
    color: #94a3b8;
    line-height: 1.7;
}
       
       
        .faq-container {
            width: 100%;
            margin: 0 auto;
        }
       
        .faq-item {
            background: rgba(15, 23, 42, 0.6);
            border-radius: 10px;
            margin-bottom: 15px;
            overflow: hidden;
            border: 1px solid rgba(100, 116, 139, 0.2);
        }
       
        .faq-question {
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 500;
        }
       
        .faq-question i {
            transition: transform 0.3s ease;
        }
       
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            color: #94a3b8;
        }
       
        .faq-item.active .faq-answer {
            padding: 0 20px 20px;
            max-height: 500px;
        }
       
        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }
       
        /* Responsive styles */
        @media (max-width: 992px) {
            .mobile-excellence-hero {
                flex-direction: column;
                gap: 40px;
            }
           
            .excellence-image-container {
                width: 100%;
                height: 350px;
            }
           
            .excellence-title {
                font-size: 2.5rem;
            }
           
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
           
            .mobile-content {
                flex-direction: column;
            }
           
            .mobile-phone-container {
                height: 400px;
            }
           
            .section-title {
                font-size: 2rem;
            }
        }

        @media (max-width: 768px) {
            .mobile-excellence-hero {
                padding: 30px 20px;
            }
           
            .excellence-title {
                font-size: 2.2rem;
            }
           
            .excellence-description {
                font-size: 1rem;
            }
           
            .excellence-image-container {
                height: 300px;
            }
           
            .features-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }
           
            .hero-title {
                font-size: 2.8rem;
            }
           
            .mobile-phone-container {
                height: 350px;
            }
        
        }
       
        @media (max-width: 576px) {
            .mobile-excellence-hero {
                padding: 25px 15px;
            }
           
            .excellence-title {
                font-size: 1.8rem;
            }
           
            .excellence-description {
                font-size: 0.95rem;
            }
           
            .excellence-image-container {
                height: 250px;
            }
           
            .hero-title {
                font-size: 2.2rem;
            }
           
            .mobile-section {
                padding-top: 2px;
            }
           
            .mobile-phone-container {
                height: 300px;
            }
           
            .mobile-phone-container {
                height: 280px;
            }
           
            .phone-controls {
                flex-direction: column;
                gap: 8px;
            }
        }
       
        /* Fallback for mobile when WebGL isn't supported */
        .phone-fallback {
    display: flex !important; /* Force display */
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1e293b, #0f172a);
    border-radius: 20px;
    border: 2px solid var(--secondary);
    position: relative;
    overflow: hidden;
}

.phone-fallback-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    padding: 20px;
    width: 90%;
}

.phone-image-container {
    width: 100%;
    height: 200px; /* Adjust height as needed */
    margin: 15px 0;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid rgba(6, 182, 212, 0.3);
}

.phone-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.fallback-icon {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.phone-fallback-content h3 {
    color: var(--secondary);
    margin-bottom: 10px;
    font-family: 'Orbitron', sans-serif;
}

.phone-fallback-content p {
    color: #cbd5e1;
    line-height: 1.6;
}
       
       
        .fallback-icon {
            font-size: 3rem;
            color: var(--secondary);
            margin-bottom: 15px;
            animation: pulse 2s infinite;
        }
       
        @keyframes pulse {
            0% { transform: scale(1); opacity: 0.7; }
            50% { transform: scale(1.1); opacity: 1; }
            100% { transform: scale(1); opacity: 0.7; }
        }
       
        /* WebGL warning */
        #webgl-warning {
            display: none;
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(15, 23, 42, 0.95);
            z-index: 20;
            color: white;
            text-align: center;
            padding: 20px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }
       
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(37, 99, 235, 0.2);
            border-radius: 50%;
            color: var(--light);
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: var(--tech-gradient);
            transform: translateY(-5px);
        }

        .form-group {
            display: flex;
            flex-direction: column;
            margin-top: 15px;
        }

        .form-control {
            padding: 12px 15px;
            border-radius: 5px;
            border: 1px solid rgba(100, 116, 139, 0.3);
            background: rgba(15, 23, 42, 0.5);
            color: var(--light);
            font-size: 1rem;
            margin-bottom: 10px;
        }

        .form-control::placeholder {
            color: #94a3b8;
        }

        .submit-btn {
            background: var(--tech-gradient);
            color: white;
            padding: 12px 20px;
            border-radius: 5px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            margin-top: 10px;
            box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(37, 99, 235, 0.6);
        }

        
       
        @media (max-width: 768px) {
            .services-hero-title {
                font-size: 2.5rem;
            }
           
            .section-title {
                font-size: 2rem;
            }
           
            .stats-grid {
                grid-template-columns: 1fr 1fr;
            }
           
            .cta-section {
                padding: 40px 20px;
            }
           
            .detailed-services {
                padding: 30px;
            }
           
            .benefits-grid {
                grid-template-columns: 1fr;
            }
           
            .hero-title {
                font-size: 2.8rem;
            }
           
            .cta-container {
                padding: 40px 20px;
            }
           
            .cta-title {
                font-size: 2rem;
            }
           
            .process-container, .faq-section {
                padding: 30px 20px;
            }
           
            .tech-cube-container {
                height: 300px;
            }
        }
       
        @media (max-width: 576px) {
            .hero-title {
                font-size: 2.2rem;
            }
           
            .process-step {
                min-width: 100%;
            }
           
            .cta-title {
                font-size: 1.8rem;
            }
           
            .software-section {
                padding-top: 120px;
            }
           
            .tech-cube-container {
                height: 250px;
            }
           
           
        }
       
        /*  Get Start Button    */
        .cta-buttons {
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            color: #fff;
            padding: 10px 20px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.05rem;
            transition: all 0.35s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 8px 20px rgba(108, 99, 255, 0.3);
            text-align: center;
            text-decoration: none;
            display: inline-block;
            letter-spacing: 0.5px;
        }

        .cta-buttons:hover {
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 12px 24px rgba(63, 142, 252, 0.45);
            color: #fff !important;
        }

        .cta-buttons:focus {
            outline: none;
            box-shadow: 0 0 0 3px rgba(100, 149, 255, 0.4);
        }

/* ===== RESPONSIVE STYLES ===== */

/* Large Tablets and Small Laptops (1024px and below) */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .mobile-section {
        padding: 130px 0 80px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .excellence-title {
        font-size: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .process-step {
        flex: 0 0 calc(50% - 15px);
    }
    
    .process-steps::before {
        display: none;
    }
    
    .impact-list {
        grid-template-columns: 1fr;
    }
    
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

/* Tablets (768px and below) */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .mobile-section {
        padding: 120px 0 60px;
    }
    
    .mobile-excellence-hero {
        flex-direction: column;
        gap: 30px;
        padding: 30px 20px;
        margin-bottom: 60px;
    }
    
    .excellence-content,
    .excellence-image-container {
        min-width: 100%;
    }
    
    .excellence-image-container {
        height: 300px;
        order: -1;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .excellence-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 60px;
    }
    
    .feature-card {
        padding: 25px 20px;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 25px 20px;
    }
    
    .process-steps {
        flex-direction: column;
        gap: 25px;
        margin-top: 30px;
    }
    
    .process-step {
        flex: 0 0 100%;
        display: flex;
        align-items: center;
        text-align: left;
        gap: 20px;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
        margin: 0;
        flex-shrink: 0;
    }
    
    .step-content {
        flex: 1;
    }
    
    .challenge-item {
        padding: 15px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .challenge-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .impact-container {
        padding: 30px 20px;
    }
    
    .impact-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .impact-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        margin-bottom: 20px;
    }
    
    .impact-icon {
        margin-right: 0;
        margin-bottom: 5px;
    }
    
    .cta-container {
        padding: 40px 25px;
        margin-bottom: 60px;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-button-large {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .tech-section {
        padding: 40px 25px;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .info-display {
        padding: 25px 20px;
        margin-top: 20px;
    }
    
    .info-title {
        font-size: 1.5rem;
    }
}

/* Mobile Devices (576px and below) */
@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    .mobile-section {
        padding: 100px 0 40px;
    }
    
    .mobile-hero {
        margin-bottom: 50px;
        padding: 0 10px;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
    
    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }
    
    .mobile-excellence-hero {
        padding: 25px 15px;
        margin-bottom: 40px;
        border-radius: 15px;
    }
    
    .excellence-title {
        font-size: 1.7rem;
        margin-bottom: 15px;
    }
    
    .excellence-description {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .excellence-image-container {
        height: 200px;
        border-radius: 10px;
    }
    
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }
    
    .section-title::after {
        width: 60px;
        bottom: -10px;
    }
    
    .features-grid {
        margin-bottom: 40px;
    }
    
    .feature-card {
        padding: 20px 15px;
        border-radius: 12px;
    }
    
    .feature-icon {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .feature-title {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    
    .feature-text {
        font-size: 0.9rem;
    }
    
    .service-types {
        margin-bottom: 50px;
    }
    
    .service-card {
        padding: 20px 15px;
        border-radius: 12px;
    }
    
    .service-icon {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .service-title {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    
    .service-description {
        font-size: 0.9rem;
    }
    
    .process-section {
        margin-bottom: 40px;
    }
    
    .process-step {
        gap: 15px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .step-title {
        font-size: 1.1rem;
        margin-bottom: 5px;
    }
    
    .step-description {
        font-size: 0.85rem;
    }
    
    .challenges-section {
        margin-bottom: 50px;
    }
    
    .challenge-item {
        padding: 15px 12px;
        border-radius: 8px;
    }
    
    .challenge-item h3 {
        font-size: 1.1rem;
    }
    
    .challenge-item p {
        font-size: 0.9rem;
    }
    
    .impact-section {
        margin-bottom: 50px;
    }
    
    .impact-container {
        padding: 25px 15px;
        border-radius: 15px;
    }
    
    .impact-title {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }
    
    .impact-text {
        font-size: 0.9rem;
    }
    
    .cta-container {
        padding: 30px 20px;
        margin-bottom: 40px;
        border-radius: 15px;
    }
    
    .cta-title {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }
    
    .cta-description {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
    
    .cta-button-large {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
    
    .faq-section {
        margin-bottom: 50px;
    }
    
    .faq-question {
        padding: 15px;
        font-size: 0.95rem;
    }
    
    .faq-answer {
        padding: 0 15px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 15px 15px;
    }
    
    .faq-answer p {
        font-size: 0.9rem;
    }
    
    .tech-section {
        padding: 30px 20px;
        border-radius: 12px;
        margin-bottom: 40px;
    }
    
    .tech-section h2 {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }
    
    .tech-item, .tech-itemm {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .info-display {
        padding: 20px 15px;
        border-radius: 12px;
    }
    
    .info-title {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    
    .info-description {
        font-size: 0.9rem;
    }
}

/* Small Mobile Devices (400px and below) */
@media (max-width: 400px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .excellence-title {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .cta-title {
        font-size: 1.4rem;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .step-number {
        margin-bottom: 10px;
    }
    
    .feature-card,
    .service-card {
        padding: 15px 12px;
    }
    
    .feature-title,
    .service-title {
        font-size: 1.2rem;
    }
}

/* Landscape Mobile Optimization */
@media (max-height: 500px) and (orientation: landscape) {
    .mobile-section {
        padding: 100px 0 30px;
    }
    
    .mobile-excellence-hero {
        padding: 20px 15px;
        margin-bottom: 30px;
    }
    
    .excellence-image-container {
        height: 150px;
    }
    
    .features-grid,
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .feature-card,
    .service-card {
        padding: 15px;
    }
}

/* High-DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .feature-card,
    .service-card,
    .impact-container,
    .cta-container {
        border-width: 1.5px;
    }
}

/* Print Styles */
@media print {
    .mobile-section {
        padding: 0;
        background: white !important;
        color: black !important;
    }
    
    .cta-container,
    .phone-controls,
    .social-links {
        display: none;
    }
}
       
    