
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
    <style>
        *, *::before, *::after {
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #fcfcfc;
            color: #111111;
            line-height: 1.6;
        }

        /* --- HEADER & NAVIGATION (IMAGE INSPIRED) --- */
        header {
            width: 100%;
            background: #ffffff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            position: relative;
            z-index: 1000;
        }

        /* Top Purple Bar */
        .top-bar {
            background-color: #711a43; /* Image jesa exact dark maroon/purple shade */
            color: #ffffff;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 8px 50px 8px 120px;
            font-size: 0.9rem;
            position: relative;
            clip-path: polygon(4% 0%, 100% 0%, 100% 100%, 0% 100%); /* Left side skew cut style */
            margin-left: 140px; /* Logo ke liye space choda */
        }

        .top-bar a {
            color: #ffffff;
            text-decoration: none;
        }

        .top-bar .email-area i {
            margin-right: 5px;
        }

        .top-bar .social-icons a {
            margin-left: 15px;
            font-size: 1rem;
            display: inline-block;
            transition: opacity 0.2s;
        }
        
        .top-bar .social-icons a:hover {
            opacity: 0.8;
        }

        /* Main Navbar Area */
        .navbar-container {
            max-width: 1300px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 20px;
            position: relative;
        }

        /* Logo Wrapper */
        .logo-wrapper {
            position: absolute;
            left: 20px;
            top: -35px; /* Top bar ke upar overlap karne ke liye as per image */
            z-index: 1010;
        }

        .logo-img {
            max-height: 75px;
            width: auto;
            display: block;
        }

        /* Desktop Navigation Links */
        .nav-menu {
            display: flex;
            list-style: none;
            margin: 0 0 0 auto; /* Right alignment */
            padding: 0;
        }

        .nav-item {
            margin-left: 25px;
        }

        .nav-link {
            text-decoration: none;
            color: #111111;
            font-weight: 600;
            font-size: 1.05rem;
            padding: 8px 4px;
            transition: color 0.2s;
            position: relative;
        }

        /* Active/Hover Line Color (Cyan) */
        .nav-link:hover, .nav-link.active {
            color: #0097bd;
        }

        /* Mobile Menu Toggle Button (Hamburger) */
        .menu-toggle {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 21px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 0;
            z-index: 1020;
        }

        .menu-toggle .bar {
            height: 3px;
            width: 100%;
            background-color: #711a43; /* Brand Purple Color */
            border-radius: 10px;
            transition: all 0.3s ease;
			padding-top:10px;
			margin-top:10px;
        }

        /* --- PORTFOLIO GRID SYSTEM --- */
        .container {
            max-width: 1200px;
            margin: 20px auto;
            padding: 20px;
        }

        .main-title-container {
            text-align: center;
            margin-bottom: 35px;
        }

        h1.main-title {
            color: #711a43;
            font-size: 2.2rem;
            margin: 0;
            text-transform: uppercase;
            font-weight: bold;
            letter-spacing: 1px;
        }
        
        h1.main-title span {
            color: #0097bd;
        }

        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
            margin-bottom: 40px;
        }

        .portfolio-card {
            background: #ffffff;
            border-top: 4px solid #0097bd;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition: transform 0.3s ease;
        }

        .portfolio-card:hover {
            transform: translateY(-5px);
        }

        .portfolio-card.purple-top {
            border-top: 4px solid #711a43;
        }

        .card-title {
            font-size: 1.3rem;
            font-weight: bold;
            color: #111111;
            margin-bottom: 10px;
            margin-top: 0;
            border-bottom: 1px solid #eeeeee;
            padding-bottom: 8px;
        }

        .card-desc {
            font-size: 0.95rem;
            color: #555555;
            margin-bottom: 15px;
            flex-grow: 1;
        }

        .media-box {
            background: #f5f5f5;
            border: 1px dashed #cccccc;
            border-radius: 6px;
            padding: 15px;
            text-align: center;
            font-size: 0.9rem;
            color: #666666;
            margin-bottom: 15px;
        }

        .media-box.image { background: #e8f5e9; border-color: #4caf50; color: #2e7d32; }
        .media-box.video { background: #e1f5fe; border-color: #0097bd; color: #007c9b; }
        .media-box.audio { background: #f3e5f5; border-color: #711a43; color: #711a43; }

        .card-link {
            display: block;
            text-align: center;
            background-color: #0097bd;
            color: white;
            text-decoration: none;
            padding: 10px 15px;
            font-size: 0.9rem;
            border-radius: 5px;
            font-weight: bold;
        }

        .portfolio-card.purple-top .card-link {
            background-color: #711a43;
        }

        .footer {
            margin-top: 40px;
            text-align: center;
            font-size: 0.9rem;
            color: #777777;
            border-top: 1px solid #eeeeee;
            padding-top: 20px;
        }

        /* --- RESPONSIVE MEDIA QUERIES --- */

        /* Tablets (Laptop screens tak balance karne ke liye) */
        @media (max-width: 992px) {
            .portfolio-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .top-bar {
                margin-left: 120px;
                padding-left: 40px;
                clip-path: none; /* Mobile/Tablet par cut clean dikhega */
            }
        }

        /* Mobile Screens (Responsive Header & Grid Menu) */
        @media (max-width: 768px) {
            .top-bar {
                display: none; /* Mobile par top bar text overload hatane ke liye */
            }
            
            .navbar-container {
                padding: 15px 20px;
                height: 70px;
            }

            .logo-wrapper {
                top: 10px; /* Logo vertical alignment fixed */
            }

            .logo-img {
                max-height: 50px;
            }

            /* Toggle Button visible hoga */
            .menu-toggle {
                display: flex;
            }

            /* Navbar links hide hokar vertical drawer banenge */
            .nav-menu {
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: #ffffff;
                flex-direction: column;
                box-shadow: 0 10px 15px rgba(0,0,0,0.05);
                border-top: 2px solid #711a43;
                padding: 20px 0;
                display: none; /* Initially hidden */
            }

            /* Jab menu open hoga tab JavaScript class trigger karegi */
            .nav-menu.active {
                display: flex;
            }

            .nav-item {
                margin: 15px 0;
                text-align: center;
                width: 100%;
            }

            .portfolio-grid {
                grid-template-columns: 1fr;
            }

            /* Hamburger animation cross banne ke liye */
            .menu-toggle.open .bar:nth-child(1) {
                transform: translateY(9px) rotate(45deg);
            }
            .menu-toggle.open .bar:nth-child(2) {
                opacity: 0;
            }
            .menu-toggle.open .bar:nth-child(3) {
                transform: translateY(-9px) rotate(-45deg);
            }
        }
    </style>