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

        :root {
            --primary-blue: #0097b2;
            --primary-purple: #7447e1;
            --secondary-blue: #00a4aa;
            --black: #000000;
            --white: #ffffff;
            --glass-bg: rgba(255, 255, 255, 0.1);
            --glass-border: rgba(255, 255, 255, 0.2);
            --shadow-light: rgba(0, 151, 178, 0.2);
            --shadow-dark: rgba(116, 71, 225, 0.3);
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
            background-attachment: fixed;
            color: var(--white);
            overflow-x: hidden;
            min-height: 100vh;
        }

        /* Animated Background */
        .bg-animation {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
        }

        .bg-animation::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at 20% 50%, var(--primary-blue) 0%, transparent 50%),
                        radial-gradient(circle at 80% 20%, var(--primary-purple) 0%, transparent 50%),
                        radial-gradient(circle at 40% 80%, var(--secondary-blue) 0%, transparent 50%);
            animation: floatBg 20s ease-in-out infinite;
            opacity: 0.1;
        }

        @keyframes floatBg {
            0%, 100% { transform: translate(-50px, -50px) rotate(0deg); }
            33% { transform: translate(50px, -100px) rotate(120deg); }
            66% { transform: translate(-100px, 50px) rotate(240deg); }
        }

        /* Glass Morphism Header */
        .header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--glass-border);
            z-index: 1000;
            padding: 1rem 0;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .header.scrolled {
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(30px);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        }

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

        .logo {
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            font-weight: 800;
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple), var(--secondary-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(116, 71, 225, 0.5);
            animation: logoGlow 3s ease-in-out infinite alternate;
            cursor: pointer;
            display: flex;
            align-items: center;
        }

        @keyframes logoGlow {
            0% { filter: drop-shadow(0 0 10px rgba(0, 151, 178, 0.5)); }
            100% { filter: drop-shadow(0 0 25px rgba(116, 71, 225, 0.8)); }
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: clamp(1rem, 2vw, 2.5rem);
        }

        .nav-menu li a {
            text-decoration: none;
            color: var(--white);
            font-weight: 500;
            font-size: clamp(0.9rem, 2vw, 1.1rem);
            position: relative;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            padding: 0.5rem 1rem;
            border-radius: 25px;
        }

        .nav-menu li a:hover,
        .nav-menu li a.active {
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            border: 1px solid var(--glass-border);
            box-shadow: 0 8px 32px rgba(0, 151, 178, 0.2);
            transform: translateY(-2px);
        }

        .nav-menu li a::before {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--primary-blue), var(--primary-purple));
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-menu li a:hover::before,
        .nav-menu li a.active::before {
            width: 80%;
        }

        .mobile-menu-toggle {
            display: none;
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            border: 1px solid var(--glass-border);
            border-radius: 10px;
            padding: 0.8rem;
            font-size: 1.2rem;
            color: var(--white);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .mobile-menu-toggle:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: scale(1.05);
        }

        /* Page Content */
        .page {
            display: none;
            min-height: 100vh;
            padding-top: 100px;
        }

        .page.active {
            display: block;
            animation: pageSlide 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

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

        /* Home Page - Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            text-align: center;
            max-width: 900px;
            z-index: 2;
            position: relative;
            padding: 0 1rem;
        }

        .hero h1 {
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            font-weight: 900;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, var(--white), var(--primary-blue), var(--primary-purple));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: heroTitle 2s ease-out;
            line-height: 1.1;
        }

        .hero-subtitle {
            font-size: clamp(1rem, 3vw, 1.5rem);
            margin-bottom: 1rem;
            color: rgba(255, 255, 255, 0.8);
            font-weight: 300;
            animation: heroSubtitle 2s ease-out 0.3s both;
        }

        .hero-description {
            font-size: clamp(0.9rem, 2vw, 1.2rem);
            margin-bottom: 3rem;
            color: rgba(255, 255, 255, 0.7);
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
            animation: heroDescription 2s ease-out 0.6s both;
        }

        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            animation: heroButtons 2s ease-out 0.9s both;
            flex-wrap: wrap;
        }

        .cta-button {
            padding: 1.2rem 2.5rem;
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
            color: var(--white);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: clamp(0.9rem, 2vw, 1.1rem);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(116, 71, 225, 0.3);
            min-width: 200px;
            text-align: center;
        }

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

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

        .cta-button:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 20px 40px rgba(116, 71, 225, 0.4);
        }

        .cta-button.secondary {
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        @keyframes heroTitle {
            from { opacity: 0; transform: translateY(50px) scale(0.9); }
            to { opacity: 1; transform: translateY(0) scale(1); }
        }

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

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

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

        /* Floating Elements */
        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .floating-element {
            position: absolute;
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            animation: float 6s ease-in-out infinite;
        }

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

        .floating-element:nth-child(2) {
            top: 60%;
            right: 10%;
            width: clamp(40px, 6vw, 60px);
            height: clamp(40px, 6vw, 60px);
            animation-delay: 2s;
        }

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

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

        /* Section Styles */
        .section {
            padding: clamp(4rem, 8vw, 6rem) clamp(1rem, 2vw, 2rem);
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 800;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-subtitle {
            text-align: center;
            font-size: clamp(1rem, 2vw, 1.3rem);
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 4rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Glass Cards */
        .glass-card {
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 25px;
            padding: 2.5rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

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

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

        .glass-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3),
                        0 0 50px rgba(116, 71, 225, 0.2);
            border-color: rgba(116, 71, 225, 0.5);
        }

        /* About Page */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: clamp(2rem, 4vw, 4rem);
            align-items: center;
            margin-bottom: clamp(3rem, 6vw, 6rem);
        }

        .founder-card {
            text-align: center;
            position: relative;
        }

        .founder-image {
            width: clamp(150px, 20vw, 200px);
            height: clamp(150px, 20vw, 200px);
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
            margin: 0 auto 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: clamp(3rem, 5vw, 5rem);
            position: relative;
            overflow: hidden;
        }

        .founder-image::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            animation: shimmer 3s ease-in-out infinite;
        }

        @keyframes shimmer {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .founder-info h3 {
            font-size: clamp(1.5rem, 3vw, 2rem);
            margin-bottom: 0.5rem;
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .founder-info .title {
            font-size: clamp(0.9rem, 2vw, 1.2rem);
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 1.5rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 1rem;
            padding: 0.8rem;
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            border: 1px solid var(--glass-border);
            transition: all 0.3s ease;
        }

        .contact-item:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: scale(1.05);
        }

        .contact-item i {
            color: var(--primary-blue);
            font-size: 1.2rem;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 2rem;
        }

        .social-link {
            width: clamp(40px, 5vw, 50px);
            height: clamp(40px, 5vw, 50px);
            border-radius: 50%;
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            border: 1px solid var(--glass-border);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .social-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .social-link:hover::before {
            opacity: 1;
        }

        .social-link:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 15px 30px rgba(116, 71, 225, 0.4);
        }

        .social-link i {
            position: relative;
            z-index: 2;
        }

        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: clamp(1.5rem, 3vw, 2.5rem);
            margin-top: 4rem;
        }

        .service-card {
            position: relative;
            min-height: 300px;
            overflow: hidden;
        }

        .service-number {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2rem;
            z-index: 3;
        }

        .service-icon {
            font-size: clamp(2rem, 4vw, 3rem);
            color: var(--primary-blue);
            margin-bottom: 1.5rem;
            display: block;
        }

        .service-card h3 {
            font-size: clamp(1.2rem, 2.5vw, 1.6rem);
            margin-bottom: 1rem;
            color: var(--white);
        }

        .service-card p {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
            font-size: clamp(0.8rem, 1.5vw, 0.9rem);
        }

        /* Projects Grid */
        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: clamp(1.5rem, 3vw, 2.5rem);
            margin-top: 4rem;
        }

        .project-card {
            position: relative;
            min-height: 400px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .project-icon-container {
            width: 100%;
            height: 200px;
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
            border-radius: 15px 15px 0 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: clamp(3rem, 6vw, 4rem);
        }

        .project-content {
            flex: 1;
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .project-title {
            font-size: clamp(1.2rem, 2vw, 1.5rem);
            margin-bottom: 1rem;
            color: var(--white);
        }

        .project-description {
            font-size: clamp(0.8rem, 1.5vw, 0.9rem);
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 1rem;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .project-technologies {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }

        .tech-tag {
            background: rgba(255, 255, 255, 0.1);
            padding: 0.3rem 0.8rem;
            border-radius: 10px;
            font-size: clamp(0.7rem, 1.2vw, 0.8rem);
            color: rgba(255, 255, 255, 0.9);
        }

        .view-project-btn {
            padding: 0.8rem 1.5rem;
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
            color: var(--white);
            text-decoration: none;
            border-radius: 25px;
            font-weight: 600;
            font-size: clamp(0.8rem, 1.5vw, 0.9rem);
            transition: all 0.3s ease;
            text-align: center;
        }

        .view-project-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(116, 71, 225, 0.3);
        }

        .project-actions {
            display: flex;
            justify-content: space-between;
            margin-top: 1rem;
        }

        .request-quote-btn {
            padding: 0.8rem 1.5rem;
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
            color: var(--white);
            text-decoration: none;
            border-radius: 25px;
            font-weight: 600;
            font-size: clamp(0.8rem, 1.5vw, 0.9rem);
            transition: all 0.3s ease;
            text-align: center;
        }

        .request-quote-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(116, 71, 225, 0.3);
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            z-index: 2000;
            align-items: center;
            justify-content: center;
            padding: 1rem;
        }

        .modal-content {
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 25px;
            padding: clamp(1.5rem, 3vw, 2.5rem);
            max-width: 800px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
        }

        .modal-icon-container {
            width: 100%;
            height: 200px;
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
            border-radius: 15px;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: clamp(4rem, 8vw, 5rem);
        }

        .modal-title {
            font-size: clamp(1.5rem, 3vw, 2rem);
            margin-bottom: 1rem;
            color: var(--white);
        }

        .modal-description {
            font-size: clamp(0.9rem, 1.5vw, 1rem);
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .modal-technologies,
        .modal-domains {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
        }

        .close-modal {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: none;
            border: none;
            color: var(--white);
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .close-modal:hover {
            color: var(--primary-blue);
            transform: scale(1.2);
        }

        /* Contact Page */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: clamp(2rem, 4vw, 4rem);
            margin-top: 4rem;
        }

        .contact-form {
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 25px;
            padding: clamp(1.5rem, 3vw, 3rem);
        }

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

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--white);
            font-weight: 500;
            font-size: clamp(0.9rem, 1.5vw, 1rem);
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--glass-border);
            border-radius: 15px;
            color: var(--white);
            font-size: clamp(0.9rem, 1.5vw, 1rem);
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--primary-blue);
            background: rgba(255, 255, 255, 0.1);
            box-shadow: 0 0 20px rgba(0, 151, 178, 0.3);
        }

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

        .submit-btn {
            width: 100%;
            padding: 1.2rem;
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
            color: var(--white);
            border: none;
            border-radius: 15px;
            font-size: clamp(0.9rem, 1.5vw, 1.1rem);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 30px rgba(116, 71, 225, 0.4);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .about-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .contact-grid {
                grid-template-columns: 1fr;
            }

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

        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: clamp(80px, 15vw, 90px);
                left: -100%;
                width: 100%;
                height: calc(100vh - clamp(80px, 15vw, 90px));
                background: rgba(0, 0, 0, 0.95);
                backdrop-filter: blur(20px);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 3rem;
                transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            }

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

            .nav-menu li a {
                font-size: clamp(1.2rem, 3vw, 1.5rem);
                padding: 1rem 2rem;
            }

            .mobile-menu-toggle {
                display: block;
            }

            .hero h1 {
                font-size: clamp(2rem, 5vw, 3rem);
            }

            .hero-subtitle {
                font-size: clamp(0.9rem, 2vw, 1.2rem);
            }

            .hero-description {
                font-size: clamp(0.8rem, 1.5vw, 1rem);
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .section {
                padding: clamp(3rem, 6vw, 4rem) clamp(0.5rem, 1vw, 1rem);
            }

            .section-title {
                font-size: clamp(1.8rem, 4vw, 2.5rem);
            }

            .services-grid,
            .projects-grid {
                grid-template-columns: 1fr;
            }

            .founder-image {
                width: clamp(120px, 15vw, 150px);
                height: clamp(120px, 15vw, 150px);
                font-size: clamp(2.5rem, 4vw, 4rem);
            }

            .modal-content {
                max-width: 90%;
                padding: 1.5rem;
            }

            .modal-icon-container {
                height: 150px;
                font-size: clamp(3rem, 6vw, 4rem);
            }
        }

        @media (max-width: 480px) {
            .project-card {
                min-height: 350px;
            }

            .project-icon-container {
                height: 150px;
                font-size: clamp(2.5rem, 5vw, 3rem);
            }

            .modal-icon-container {
                height: 120px;
                font-size: clamp(2.5rem, 5vw, 3rem);
            }
        }

        /* Loading Animation */
        .page-loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #0a0a0a, #1a1a2e);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 10000;
            transition: opacity 0.5s ease;
        }

        .loader {
            width: clamp(60px, 10vw, 80px);
            height: clamp(60px, 10vw, 80px);
            border: 3px solid rgba(255, 255, 255, 0.1);
            border-top: 3px solid var(--primary-blue);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Scroll Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .slide-in-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .slide-in-left.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .slide-in-right {
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .slide-in-right.visible {
            opacity: 1;
            transform: translateX(0);
        }




:root {
    --primary-blue: #007BFF;
    --primary-purple: #6f42c1;
    --glass-border: rgba(255, 255, 255, 0.1);
}

/* Filter and Search Container */
.filter-search-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
    justify-content: space-between;
    align-items: center;
}

/* Search Bar */
.search-bar {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.search-bar input {
    width: 100%;
    padding: 0.8rem 2.5rem 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: #fff;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    outline: none;
    transition: all 0.3s ease;
}

.search-bar input:focus {
    border-color: var(--primary-blue);
    background: rgba(255, 255, 255, 0.15);
}

.search-bar i {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
}

/* Filter Options */
.filter-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.filter-checkboxes {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.filter-checkboxes label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
    cursor: pointer;
}

.filter-checkboxes input {
    accent-color: var(--primary-blue);
    width: 1rem;
    height: 1rem;
    cursor: pointer;
}

/* Clear Filters Button */
.clear-btn {
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
    cursor: pointer;
    transition: all 0.3s ease;
}

.clear-btn:hover {
    background: linear-gradient(135deg, #005bb5, #5a32a3);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .filter-search-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .search-bar {
        max-width: 100%;
    }

    .filter-checkboxes {
        gap: 0.75rem;
    }
}


/* Define CSS Variables */
:root {
    --primary-blue: #007BFF;
    --primary-purple: #6f42c1;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-size-small: clamp(0.8rem, 1.5vw, 0.9rem);
}

/* Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Footer Styles */
.footer {
    background: linear-gradient(180deg, rgba(10, 25, 47, 0.95), rgba(0, 0, 0, 0.9));
    backdrop-filter: blur(12px);
    border-top: 2px solid var(--glass-border);
    padding: 5rem 2rem 3rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--font-size-small);
    position: relative;
    overflow: hidden;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
    margin-bottom: 4rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    opacity: 0;
    animation: fade-in 0.8s ease forwards;
    animation-delay: calc(0.2s * var(--footer-section-index, 0));
}

.footer-section:nth-child(1) { --footer-section-index: 1; }
.footer-section:nth-child(2) { --footer-section-index: 2; }
.footer-section:nth-child(3) { --footer-section-index: 3; }
.footer-section:nth-child(4) { --footer-section-index: 4; }

.footer-title {
    color: var(--primary-blue);
    font-size: clamp(1.3rem, 2.2vw, 1.6rem);
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-description {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    font-size: var(--font-size-small);
}

.footer-social-links,
.footer-links,
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-social-link,
.footer-link,
.footer-contact-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    position: relative;
}

.footer-social-link:hover,
.footer-link:hover,
.footer-contact-link:hover {
    color: var(--primary-purple);
    transform: translateX(5px);
}

.footer-social-link:focus,
.footer-link:focus,
.footer-contact-link:focus {
    outline: 3px solid var(--primary-blue);
    outline-offset: 3px;
    color: var(--primary-purple);
    box-shadow: 0 0 8px rgba(0, 123, 255, 0.3);
}

.footer-social-link > i {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.footer-social-link:hover > i {
    transform: scale(1.2);
}

.footer-links li,
.footer-contact li {
    list-style: none;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: var(--font-size-small);
}

.newsletter-form {
    display: flex;
    gap: 0.75rem;
    align-items: stretch;
}

.newsletter-form input {
    padding: 0.9rem 1rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: #fff;
    font-size: var(--font-size-small);
    outline: none;
    width: 100%;
    max-width: 300px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.newsletter-form input:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 8px rgba(0, 123, 255, 0.3);
}

.newsletter-btn {
    padding: 0.9rem 1.5rem;
    background: linear-gradient(45deg, var(--primary-blue), var(--primary-purple));
    border: none;
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.newsletter-btn:hover {
    background: linear-gradient(45deg, #005bb5, #5a3da3);
    transform: scale(1.05);
}

.newsletter-btn:focus {
    outline: 3px solid var(--primary-blue);
    outline-offset: 3px;
    box-shadow: 0 0 8px rgba(0, 123, 255, 0.3);
}

.newsletter-message {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    font-size: var(--font-size-small);
    font-weight: 400;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateY(10px);
    max-width: 100%;
}

.newsletter-message.visible {
    opacity: 1;
    transform: translateY(0);
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid var(--glass-border);
    color: rgba(255, 255, 255, 0.65);
    font-size: clamp(0.75rem, 1.4vw, 0.85rem);
    letter-spacing: 0.03em;
}

/* Animation Keyframes */
@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-social-links,
    .footer-links,
    .footer-contact {
        align-items: center;
    }

    .footer-social-link:hover,
    .footer-link:hover,
    .footer-contact-link:hover {
        transform: scale(1.05);
    }

    .newsletter-form {
        flex-direction: column;
        align-items: center;
    }

    .newsletter-form input {
        max-width: 100%;
    }

    .newsletter-btn {
        width: 100%;
        justify-content: center;
    }

    .footer-title {
        justify-content: center;
    }

    .newsletter-message {
        padding: 0.5rem 0.75rem;
        font-size: clamp(0.75rem, 1.4vw, 0.85rem);
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 3rem 1.5rem 2rem;
    }

    .footer-container {
        gap: 1.5rem;
    }

    .footer-title {
        font-size: clamp(1.1rem, 2vw, 1.4rem);
    }

    .footer-description,
    .contact-item,
    .newsletter-form input,
    .newsletter-btn,
    .newsletter-message {
        font-size: clamp(0.75rem, 1.4vw, 0.85rem);
    }
}