        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

        * {
            font-family: "Poppins", sans-serif;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            scroll-behavior: smooth;
        }

        body {
            background: #f8f8f8;
            color: #222;
        }

        /* Header */
        header {
            background-color: #f0f0f0;
            width: 100%;
            position: fixed;
            z-index: 999;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 40px;
            top: 0;
            left: 0;
            box-shadow: 0 2px 8px rgba(0,0,0,0.03);
        }

        .logo {
            text-decoration: none;
            color: #3a6cf4;
            text-transform: uppercase;
            font-weight: 700;
            font-size: 1.8em;
        }

        .navigation {
            display: flex;
            gap: 24px;
        }

        .navigation a {
            color: #3a6cf4;
            text-decoration: none;
            font-size: 1.1em;
            font-weight: 500;
            transition: color 0.2s;
        }

        .navigation a:hover {
            color: #601cfc;
        }

        .nav-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 2rem;
            cursor: pointer;
            color: #3a6cf4;
        }

        /* Main Section */
        section {
            padding: 120px 40px 40px 40px;
            max-width: 1200px;
            margin: auto;
        }

        .main {
            min-height: 80vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(120deg, #3a6cf4 0%, #000016 100%);
            border-radius: 20px;
            margin-top: 60px;
        }

        .main h2 {
            color: #fff;
            font-size: 2em;
            font-weight: 500;
        }

        .main h2 span {
            display: block;
            margin-top: 10px;
            color: #4e9eff;
            font-size: 2.5em;
            font-weight: 700;
        }

        .main h3 {
            color: #fff;
            font-size: 1.5em;
            font-weight: 700;
            letter-spacing: 1px;
            margin-top: 10px;
            margin-bottom: 30px;
        }

        .main-btn {
            color: #fff;
            background-color: #3a6cf4;
            text-decoration: none;
            font-size: 1.1em;
            font-weight: 600;
            display: inline-block;
            padding: 0.8em 2em;
            letter-spacing: 1px;
            border-radius: 15px;
            margin-bottom: 40px;
            transition: 0.3s;
        }

        .main-btn:hover {
            background-color: #0a49f6;
            transform: scale(1.05);
        }

        .social-icons {
            margin-top: 10px;
        }

        .social-icons a {
            color: #fff;
            font-size: 1.7em;
            margin-right: 20px;
            transition: color 0.2s;
        }

        .social-icons a:hover {
            color: #3a6cf4;
        }

        /* Cards & Projects */
        .title {
            display: flex;
            justify-content: center;
            color: #3a6cf4;
            font-size: 2em;
            font-weight: 800;
            margin-bottom: 30px;
        }

        .content {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 24px;
        }

        .card, .project-card {
            background-color: #fff;
            border-radius: 10px;
            box-shadow: 0 5px 25px rgba(1,1,1,0.08);
            padding: 25px;
            margin: 10px;
            flex: 1 1 300px;
            min-width: 250px;
            max-width: 350px;
            transition: transform 0.3s;
        }

        .card:hover, .project-card:hover {
            transform: scale(1.04);
        }

        .icon {
            color: #3a6cf4;
            font-size: 4em;
            text-align: center;
            margin-bottom: 10px;
        }

        .info {
            text-align: center;
        }

        .info h3 {
            color: #3a6cf4;
            font-size: 1.2em;
            font-weight: 700;
            margin-top: 10px;
        }

        .projects {
            background-color: #000016;
            border-radius: 20px;
        }

        .projects .title {
            color: #fff;
        }

        .project-name{
            color: #3a6cf4;
            font-weight: 600;
            transition: 0.7s;
        }

        .project-name:hover {
            color: #601cfc;
            transform: scale(1.04);
        }


        .project-card {
            background: #fff;
            border: 1px solid #eee;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            padding: 0;
            min-width: 250px;
            max-width: 350px;
            width: 100%;
        }

        .project {
            width: 100%;
        }

        .project img {
            width: 100%;
            height: auto;
            max-height: 200px;
            object-fit: contain;
            background: #ffff;
            display: block;
            margin: 0 auto;
            padding: 10px;
        }


        .project-info {
            padding: 1em 0 0 0;
        }

        .project-category {
            color: #000;
            font-size: 0.9em;
        }

        .project-title {
            display: flex;
            justify-content: space-between;
            text-transform: uppercase;
            font-weight: 800;
            margin-top: 10px;
        }

        .more-details {
            text-decoration: none;
            color: #3a6cf4;
            font-weight: 600;
        }

        .more-details:hover {
            color: #601cfc;
        }

        /* Contact */
        .contact .icon {
            font-size: 3em;
        }

        .contact .info h3 {
            color: #000;
        }

        .contact .info p {
            font-size: 1.1em;
        }

        /* Footer */
        .footer {
            background-color: #000016;
            color: #fff;
            padding: 2em 40px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            border-radius: 20px 20px 0 0;
            margin-top: 40px;
        }

        .footer-title {
            font-size: 1.2em;
            font-weight: 600;
        }

        .footer-title span {
            color: #3a6cf4;
        }

        .social-icons2 {
            margin-top: 8px;
        }

        .social-icons2 a {
            color: #fff;
            font-size: 1.3em;
            margin-right: 12px;
            transition: color 0.2s;
        }

        .social-icons2 a:hover {
            color: #3a6cf4;
        }

        /* Responsive Styles */
        @media (max-width: 1024px) {
            header, section, .footer {
                padding-left: 20px;
                padding-right: 20px;
            }
        }

        @media (max-width: 900px) {
            .main {
                flex-direction: column;
                padding: 40px 10px;
            }
            .content {
                gap: 16px;
            }
        }

        @media (max-width: 768px) {
            header {
                padding: 12px 16px;
            }
            .navigation {
                display: none;
                flex-direction: column;
                background: #fff;
                position: absolute;
                top: 60px;
                right: 16px;
                box-shadow: 0 2px 8px rgba(0,0,0,0.1);
                z-index: 100;
                border-radius: 8px;
                min-width: 150px;
            }
            .navigation.active {
                display: flex;
            }
            .nav-toggle {
                display: block;
            }
            section {
                padding: 100px 10px 30px 10px;
            }
            .main {
                margin-top: 50px;
            }
        }

        @media (max-width: 600px) {
            .main h2 {
                font-size: 1.2em;
            }
            .main h2 span {
                font-size: 1.5em;
            }
            .main h3 {
                font-size: 1em;
            }
            .main-btn {
                font-size: 1em;
                padding: 10px 20px;
            }
            .card, .project-card {
                min-width: 90vw;
                max-width: 98vw;
                padding: 15px;
            }
            .footer {
                padding: 1em 5px;
            }
            .projects .content, .cards .content {
                flex-direction: column;
                align-items: center;
            }
        }

        /* Hide scrollbars on mobile for nav */
        .navigation {
            -webkit-overflow-scrolling: touch;
        }