
        :root {
            --primary-bg: #0a0a0a;
            --secondary-bg: #111111;
            --accent-purple: #8b5cf6;
            --accent-cyan: #06b6d4;
            --accent-orange: #f97316;
            --text-primary: #f8fafc;
            --text-secondary: #cbd5e1;
            --glass-bg: rgba(255, 255, 255, 0.05);
            --glass-border: rgba(255, 255, 255, 0.1);
        }

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

     html {
  scroll-behavior: smooth;
}


        body {
            font-family: 'Manrope', sans-serif;
            background-color: var(--primary-bg);
            color: var(--text-primary);
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 1.5rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(10, 10, 10, 0.8);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--glass-border);
        }

 /* Updated Header Logo Styles */
    .logo {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .logo img {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        object-fit: cover;
        border: 2px solid transparent;
       
    }

    .logo-text {
        color: var(--text-primary);
        font-size: 1.5rem;
        font-weight: 700;
        background: linear-gradient(90deg, var(--text-primary), var(--accent-purple), var(--accent-cyan));
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        margin: 0;
        position: relative;
    }

    .logo-text::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 100%;
        height: 2px;
        background: linear-gradient(90deg, var(--accent-purple), var(--accent-cyan));
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s ease;
    }

    .logo:hover .logo-text::after {
        transform: scaleX(1);
    }

        /* Navigation Styles */
        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-links li a {
            color: var(--text-secondary);
            text-decoration: none;
            font-weight: 500;
            position: relative;
            padding: 0.5rem 0;
            transition: color 0.3s ease;
        }

        .nav-links li a:hover {
            color: var(--text-primary);
        }

        .nav-links li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-purple);
            transition: width 0.3s ease;
        }

        .nav-links li a:hover::after {
            width: 100%;
        }

        /* Hamburger Menu */
        .hamburger {
            display: none;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            width: 40px;
            height: 40px;
            cursor: pointer;
            position: relative;
            z-index: 1001;
        }

        .hamburger-line {
            width: 30px;
            height: 2px;
            background-color: var(--text-primary);
            margin: 3px 0;
            transition: all 0.3s ease;
            position: relative;
        }

        .hamburger.active .hamburger-line:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
            background-color: var(--accent-purple);
        }

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

        .hamburger.active .hamburger-line:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
            background-color: var(--accent-purple);
        }

        /* Circulating border animation */
        .hamburger::before {
            content: '';
            position: absolute;
            top: -5px;
            left: -5px;
            right: -5px;
            bottom: -5px;
            border: 2px solid transparent;
            border-radius: 50%;
            animation: circulate 2s linear infinite;
        }

        @keyframes circulate {
            0% {
                transform: rotate(0deg);
                border-top-color: var(--accent-purple);
            }
            25% {
                border-right-color: var(--accent-cyan);
            }
            50% {
                border-bottom-color: var(--accent-orange);
            }
            75% {
                border-left-color: var(--accent-purple);
            }
            100% {
                transform: rotate(360deg);
                border-top-color: var(--accent-purple);
            }
        }

        /* Mobile Navigation */
        .mobile-nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            height: 100vh;
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(20px);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            transition: right 0.5s ease;
            z-index: 999;
            border-left: 1px solid var(--glass-border);
        }

        .mobile-nav.active {
            right: 0;
        }

        .mobile-nav-links {
            list-style: none;
            text-align: center;
        }

        .mobile-nav-links li {
            margin: 2rem 0;
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.5s ease;
        }

        .mobile-nav.active .mobile-nav-links li {
            opacity: 1;
            transform: translateX(0);
        }

        .mobile-nav-links li:nth-child(1) { transition-delay: 0.1s; }
        .mobile-nav-links li:nth-child(2) { transition-delay: 0.2s; }
        .mobile-nav-links li:nth-child(3) { transition-delay: 0.3s; }
        .mobile-nav-links li:nth-child(4) { transition-delay: 0.4s; }
        .mobile-nav-links li:nth-child(5) { transition-delay: 0.5s; }

        .mobile-nav-links li a {
            color: var(--text-primary);
            text-decoration: none;
            font-size: 1.5rem;
            font-weight: 600;
            padding: 0.5rem 1rem;
            display: inline-block;
            background: var(--glass-bg);
            border-radius: 10px;
            backdrop-filter: blur(10px);
            border: 1px solid var(--glass-border);
            transition: all 0.3s ease;
            width: 200px;
        }

        .mobile-nav-links li a:hover {
            background: rgba(139, 92, 246, 0.2);
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(139, 92, 246, 0.2);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 0 2rem;
            position: relative;
            overflow: hidden;
            margin-top: 30px; /* Added to prevent overlap with fixed header */
        }

        .hero-content {
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .hero-text {
            z-index: 2;
        }

        .hero h1 {
            font-size: 4rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            background: linear-gradient(90deg, var(--text-primary), var(--accent-purple), var(--accent-cyan));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            position: relative;
        }

        .hero h1::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, var(--accent-purple), var(--accent-cyan));
        }

        .hero p {
            font-size: 1.2rem;
            color: var(--text-secondary);
            margin-bottom: 2rem;
            max-width: 500px;
        }

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
        }

        /* Button Styles */
        .btn {
            padding: 0.8rem 2rem;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            z-index: 1;
        }

        .btn-primary {
            background: linear-gradient(90deg, var(--accent-purple), var(--accent-cyan));
            color: white;
        }

        .btn-secondary {
            background: transparent;
            color: var(--text-primary);
            border: 2px solid transparent;
        }

        /* Circulating border for buttons */
        .btn-secondary::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(90deg, var(--accent-purple), var(--accent-cyan), var(--accent-orange), var(--accent-purple));
            border-radius: 50px;
            z-index: -1;
            animation: circulate-border 3s linear infinite;
            background-size: 400% 400%;
        }

        .btn-secondary::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--secondary-bg);
            border-radius: 50px;
            z-index: -1;
        }

        @keyframes circulate-border {
            0% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
            100% {
                background-position: 0% 50%;
            }
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(139, 92, 246, 0.3);
        }

        /* Hero Visual */
        .hero-visual {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .code-container {
            width: 400px;
            height: 300px;
            background: var(--secondary-bg);
            border-radius: 15px;
            padding: 1.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            position: relative;
            overflow: hidden;
            border: 1px solid var(--glass-border);
        }

        .code-header {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
        }

        .code-dots {
            display: flex;
            gap: 8px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }

        .dot-red {
            background: #ff5f56;
        }

        .dot-yellow {
            background: #ffbd2e;
        }

        .dot-green {
            background: #27ca3f;
        }

        .code-content {
            font-family: monospace;
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.5;
        }

        .code-line {
            margin-bottom: 0.5rem;
        }

        .code-keyword {
            color: var(--accent-purple);
        }

        .code-function {
            color: var(--accent-cyan);
        }

        .code-string {
            color: var(--accent-orange);
        }

        .code-comment {
            color: #6b7280;
        }

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

        .floating-element {
            position: absolute;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: var(--accent-purple);
            opacity: 0.7;
            animation: float 6s ease-in-out infinite;
        }

        .floating-element:nth-child(2) {
            background: var(--accent-cyan);
            width: 15px;
            height: 15px;
            top: 20%;
            left: 80%;
            animation-delay: 1s;
        }

        .floating-element:nth-child(3) {
            background: var(--accent-orange);
            width: 25px;
            height: 25px;
            top: 70%;
            left: 10%;
            animation-delay: 2s;
        }

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

        /* Settings Panel */
        .settings-panel {
            position: fixed;
            top: 50%;
            right: 20px;
            transform: translateY(-50%);
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            border: 1px solid var(--glass-border);
            border-radius: 10px;
            padding: 1rem;
            z-index: 100;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .settings-toggle {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--accent-purple);
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.7);
            }
            70% {
                box-shadow: 0 0 0 10px rgba(139, 92, 246, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(139, 92, 246, 0);
            }
        }

        .settings-options {
            display: none;
            flex-direction: column;
            gap: 0.5rem;
        }

        .settings-panel.active .settings-options {
            display: flex;
        }

        .settings-option {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .settings-option:hover {
            transform: scale(1.2);
        }

        .color-1 {
            background: var(--accent-purple);
        }

        .color-2 {
            background: var(--accent-cyan);
        }

        .color-3 {
            background: var(--accent-orange);
        }

        /* Background Elements */
        .bg-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: -1;
        }

        .bg-element {
            position: absolute;
            border-radius: 50%;
            filter: blur(60px);
            opacity: 0.1;
        }

        .bg-element-1 {
            width: 300px;
            height: 300px;
            background: var(--accent-purple);
            top: 10%;
            left: 10%;
        }

        .bg-element-2 {
            width: 400px;
            height: 400px;
            background: var(--accent-cyan);
            bottom: 10%;
            right: 10%;
        }

        /* Responsive Styles */
        @media (max-width: 968px) {
            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 2rem;
            }

            .hero h1 {
                font-size: 3rem;
            }

            .hero p {
                margin: 0 auto 2rem;
            }

            .hero-buttons {
                justify-content: center;
            }

            .nav-links {
                display: none;
            }

            .hamburger {
                display: flex;
            }
        }

        @media (max-width: 576px) {
            .hero {
                margin-top: 120px;
                padding: 0 1rem;
            }
            
            .hero h1 {
                font-size: 3.5rem;
            }

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

            .btn {
                width: 200px;
            }

            .code-container {
                width: 100%;
                height: 250px;
            }
            
            .settings-panel {
                right: 10px;
            }
        }

    /* Projects Section Styles */
    .projects {
        padding: 100px 0;
        background: var(--secondary-bg);
        position: relative;
        overflow: hidden;
    }

    .projects::before {
        content: '';
        position: absolute;
        top: -100px;
        right: -100px;
        width: 300px;
        height: 300px;
        background: var(--accent-purple);
        border-radius: 50%;
        filter: blur(80px);
        opacity: 0.1;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
    }

    .section-header {
        text-align: center;
        margin-bottom: 4rem;
    }

    .section-title {
        font-size: 3rem;
        font-weight: 800;
        margin-bottom: 1rem;
        background: linear-gradient(90deg, var(--text-primary), var(--accent-purple));
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

    .section-subtitle {
        font-size: 1.2rem;
        color: var(--text-secondary);
        max-width: 600px;
        margin: 0 auto;
    }

    .projects-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
        gap: 3rem;
    }

    .project-card {
        background: var(--primary-bg);
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        border: 1px solid var(--glass-border);
        transition: all 0.4s ease;
        position: relative;
    }

    .project-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 30px 60px rgba(139, 92, 246, 0.2);
        border-color: var(--accent-purple);
    }

    .project-media {
        position: relative;
        height: 300px;
        overflow: hidden;
    }

    .project-image,
    .project-video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        transition: opacity 0.5s ease;
    }

    .project-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .project-video {
        opacity: 0;
        pointer-events: none;
    }

    .project-video video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .project-card:hover .project-video {
        opacity: 1;
    }

    .project-card:hover .project-image {
        opacity: 0;
    }

    .project-content {
        padding: 2rem;
    }

    .project-title {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: var(--text-primary);
    }

    .project-description {
        color: var(--text-secondary);
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }

    .project-tech {
        display: flex;
        gap: 0.5rem;
        margin-bottom: 2rem;
        flex-wrap: wrap;
    }

    .tech-tag {
        background: rgba(139, 92, 246, 0.1);
        color: var(--accent-purple);
        padding: 0.4rem 1rem;
        border-radius: 50px;
        font-size: 0.9rem;
        font-weight: 500;
        border: 1px solid rgba(139, 92, 246, 0.2);
    }

    .project-link {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        color: var(--text-primary);
        text-decoration: none;
        font-weight: 600;
        padding: 0.8rem 1.5rem;
        background: var(--glass-bg);
        border-radius: 50px;
        border: 1px solid var(--glass-border);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .project-link::before {
        content: '';
        position: absolute;
        top: -2px;
        left: -2px;
        right: -2px;
        bottom: -2px;
        background: linear-gradient(90deg, var(--accent-purple), var(--accent-cyan), var(--accent-orange), var(--accent-purple));
        border-radius: 50px;
        z-index: -1;
        animation: circulate-border 3s linear infinite;
        background-size: 400% 400%;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

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

    .project-link:hover {
        background: rgba(139, 92, 246, 0.1);
        transform: translateY(-2px);
    }

    /* Skills Section Styles */
    .skills {
        padding: 100px 0;
        background: var(--primary-bg);
        position: relative;
    }

    .skills::before {
        content: '';
        position: absolute;
        bottom: -100px;
        left: -100px;
        width: 300px;
        height: 300px;
        background: var(--accent-cyan);
        border-radius: 50%;
        filter: blur(80px);
        opacity: 0.1;
    }

    .skills-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }

    .skills-list {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .skill-item {
        padding: 1.5rem;
        background: var(--secondary-bg);
        border-radius: 15px;
        border: 1px solid var(--glass-border);
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .skill-item:hover {
        border-color: var(--accent-purple);
        transform: translateX(10px);
        box-shadow: 0 10px 30px rgba(139, 92, 246, 0.1);
    }

    .skill-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1rem;
    }

    .skill-name {
        font-size: 1.2rem;
        font-weight: 600;
        color: var(--text-primary);
    }

    .skill-percentage {
        font-size: 1rem;
        font-weight: 700;
        color: var(--accent-purple);
    }

    .skill-bar {
        height: 6px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        overflow: hidden;
        position: relative;
    }

    .skill-progress {
        height: 100%;
        background: linear-gradient(90deg, var(--accent-purple), var(--accent-cyan));
        border-radius: 10px;
        position: relative;
        transition: width 1.5s ease;
    }

    .skill-progress::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
        animation: shimmer 2s infinite;
    }

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

    .skills-description {
        margin-top: 2rem;
        padding: 1.5rem;
        background: var(--secondary-bg);
        border-radius: 15px;
        border: 1px solid var(--glass-border);
    }

    .skills-description p {
        color: var(--text-secondary);
        line-height: 1.7;
        font-size: 1.1rem;
    }

    .skills-visual {
        display: grid;
        justify-content: center;
        align-items: center;
    }

    .skill-image-container {
        position: relative;
        width: 400px;
        height: 400px;
    }

    .skill-image-border {
        position: absolute;
        top: -10px;
        left: -10px;
        right: -10px;
        bottom: -10px;
        border-radius: 20px;
        overflow: hidden;
    }

    .rotating-border {
        width: 100%;
        height: 100%;
        background: conic-gradient(from 0deg, var(--accent-purple), var(--accent-cyan), var(--accent-orange), var(--accent-purple));
        animation: rotate 4s linear infinite;
    }

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

    .skill-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--secondary-bg);
        border-radius: 15px;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 20px;
        border: 1px solid var(--glass-border);
    }

    .skill-image img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        transition: all 0.5s ease;
    }

    /* Responsive Styles */
    @media (max-width: 968px) {
        .projects-grid {
            grid-template-columns: 1fr;
        }
        
        .skills-content {
            grid-template-columns: 1fr;
            gap: 3rem;
        }
        
        .section-title {
            font-size: 2.5rem;
        }
    }

    @media (max-width: 576px) {
        .projects-grid {
            grid-template-columns: 1fr;
        }
        
        .project-media {
            height: 250px;
        }
        
        .skill-image-container {
            width: 300px;
            height: 350px;
        }
        
        .section-title {
            font-size: 2rem;
        }
    }

    /* About Section Styles */
    .about {
        padding: 100px 0;
        background: var(--secondary-bg);
        position: relative;
        overflow: hidden;
    }

    .about::before {
        content: '';
        position: absolute;
        top: -150px;
        left: -150px;
        width: 400px;
        height: 400px;
        background: var(--accent-orange);
        border-radius: 50%;
        filter: blur(100px);
        opacity: 0.05;
    }

    .about-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }

    .about-image {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .image-container {
        position: relative;
        width: 350px;
        height: 550px;
        border-radius: 20px;
        overflow: hidden;
    }

    .image-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 20px;
        position: relative;
        z-index: 2;
    }

    .image-border {
        position: absolute;
        top: -10px;
        left: -10px;
        right: -10px;
        bottom: -10px;
        border-radius: 25px;
        overflow: hidden;
        z-index: 1;
    }

    .rotating-border {
        width: 100%;
        height: 100%;
        background: conic-gradient(from 0deg, var(--accent-purple), var(--accent-cyan), var(--accent-orange), var(--accent-purple));
        animation: rotate 8s linear infinite;
    }

    .image-glow {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 120%;
        height: 120%;
        background: radial-gradient(circle, var(--accent-purple) 0%, transparent 70%);
        opacity: 0.1;
        filter: blur(20px);
        z-index: 0;
    }

    .location-info {
        display: flex;
        align-items: center;
        gap: 0.8rem;
        padding: 1rem 2rem;
        background: var(--glass-bg);
        border-radius: 50px;
        border: 1px solid var(--glass-border);
        backdrop-filter: blur(10px);
    }

    .location-icon {
        color: var(--accent-purple);
    }

    .location-text {
        color: var(--text-primary);
        font-weight: 500;
    }

    .about-text {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .about-description {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .about-description p {
        color: var(--text-secondary);
        line-height: 1.7;
        font-size: 1.1rem;
    }

    .contact-info {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 1rem;
    }

    .contact-item {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 1rem 1.5rem;
        background: var(--glass-bg);
        border-radius: 15px;
        border: 1px solid var(--glass-border);
        transition: all 0.3s ease;
    }

    .contact-item:hover {
        border-color: var(--accent-purple);
        transform: translateX(10px);
    }

    .contact-icon {
        color: var(--accent-purple);
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: rgba(139, 92, 246, 0.1);
        border-radius: 10px;
    }

    .contact-details {
        display: flex;
        flex-direction: column;
        gap: 0.2rem;
    }

    .contact-label {
        font-size: 0.9rem;
        color: var(--text-secondary);
        font-weight: 500;
    }

    .contact-value {
        color: var(--text-primary);
        text-decoration: none;
        font-weight: 600;
        transition: color 0.3s ease;
    }

    .contact-value:hover {
        color: var(--accent-purple);
    }

    .about-cta {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 2rem;
        background: linear-gradient(135deg, var(--accent-purple), var(--accent-cyan));
        border-radius: 20px;
        margin-top: 2rem;
    }

    .about-cta p {
        color: white;
        font-weight: 600;
        font-size: 1.2rem;
        margin: 0;
    }

    .about-cta .btn {
        background: white;
        color: var(--accent-purple);
    }

    .about-cta .btn:hover {
        background: rgba(255, 255, 255, 0.9);
        transform: translateY(-2px);
    }

    /* Footer Styles */
    .footer {
        background: var(--primary-bg);
        padding: 60px 0 30px;
        border-top: 1px solid var(--glass-border);
    }

    .footer-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 3rem;
    }

    .footer-info {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .footer-logo {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .logo-image {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        overflow: hidden;
        border: 2px solid var(--accent-purple);
    }

    .logo-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .logo-text {
        font-size: 1.5rem;
        font-weight: 700;
        background: linear-gradient(90deg, var(--text-primary), var(--accent-purple));
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

    .footer-tagline {
        color: var(--text-secondary);
        font-size: 1.1rem;
        max-width: 300px;
    }

    .footer-social {
        display: flex;
        gap: 1rem;
    }

    .social-link {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 50px;
        background: var(--glass-bg);
        border-radius: 50%;
        color: var(--text-secondary);
        text-decoration: none;
        transition: all 0.3s ease;
        border: 1px solid var(--glass-border);
        position: relative;
        overflow: hidden;
    }

    .social-link::before {
        content: '';
        position: absolute;
        top: -2px;
        left: -2px;
        right: -2px;
        bottom: -2px;
        background: linear-gradient(90deg, var(--accent-purple), var(--accent-cyan));
        border-radius: 50%;
        z-index: -1;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .social-link:hover {
        color: white;
        transform: translateY(-3px);
    }

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

    .footer-bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 2rem;
        border-top: 1px solid var(--glass-border);
    }

    .footer-copyright p,
    .footer-made p {
        color: var(--text-secondary);
        margin: 0;
    }

    .heart {
        color: #ff4757;
        animation: heartbeat 2s infinite;
    }

    @keyframes heartbeat {
        0%, 100% {
            transform: scale(1);
        }
        50% {
            transform: scale(1.1);
        }
    }

    /* Responsive Styles */
    @media (max-width: 968px) {
        .about-content {
            grid-template-columns: 1fr;
            gap: 3rem;
        }
        
        .about-image {
            order: 2;
        }
        
        .about-text {
            order: 1;
        }
        
        .image-container {
            width: 300px;
            height: 500px;
        }
        
        .footer-content {
            flex-direction: column;
            gap: 2rem;
            text-align: center;
        }
        
        .footer-bottom {
            flex-direction: column;
            gap: 1rem;
            text-align: center;
        }
    }

    @media (max-width: 576px) {
        .about-cta {
            flex-direction: column;
            gap: 1rem;
            text-align: center;
        }
        
        .image-container {
            width: 300px;
            height: 500px;
        }
        
        .contact-item {
            padding: 1rem;
        }
    }

    /* Chat Bot Styles */
    .chat-bot-widget {
        position: fixed;
        bottom: 30px;
        right: 30px;
        z-index: 1000;
        font-family: 'Manrope', sans-serif;
    }

    /* Chat Toggle Button */
    .chat-toggle {
        position: relative;
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, var(--accent-purple), var(--accent-cyan));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
        transition: all 0.3s ease;
        animation: pulse 2s infinite;
    }

    .chat-toggle:hover {
        transform: scale(1.1);
        box-shadow: 0 15px 40px rgba(139, 92, 246, 0.6);
    }

    .chat-icon {
        color: white;
    }

    .chat-notification {
        position: absolute;
        top: -5px;
        right: -5px;
        width: 20px;
        height: 20px;
        background: #ff4757;
        border-radius: 50%;
        border: 3px solid var(--primary-bg);
        animation: bounce 2s infinite;
    }

    @keyframes bounce {
        0%, 100% {
            transform: scale(1);
        }
        50% {
            transform: scale(1.2);
        }
    }

    /* Chat Container */
    .chat-container {
        position: absolute;
        bottom: 80px;
        right: 0;
        width: 350px;
        height: 500px;
        background: var(--secondary-bg);
        border-radius: 20px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
        border: 1px solid var(--glass-border);
        backdrop-filter: blur(20px);
        display: none;
        flex-direction: column;
        overflow: hidden;
        transform: translateY(20px);
        opacity: 0;
        transition: all 0.3s ease;
    }

    .chat-container.active {
        display: flex;
        transform: translateY(0);
        opacity: 1;
    }

    /* Chat Header */
    .chat-header {
        display: flex;
        align-items: center;
        padding: 1.5rem;
        background: var(--primary-bg);
        border-bottom: 1px solid var(--glass-border);
        position: relative;
    }

    .chat-avatar {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        overflow: hidden;
        margin-right: 1rem;
        border: 2px solid var(--accent-purple);
    }

    .chat-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .chat-info h3 {
        margin: 0;
        color: var(--text-primary);
        font-weight: 600;
    }

    .chat-info p {
        margin: 0.2rem 0 0 0;
        color: var(--text-secondary);
        font-size: 0.9rem;
    }

    .status {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        margin-top: 0.3rem;
    }

    .status-dot {
        width: 8px;
        height: 8px;
        background: #27ca3f;
        border-radius: 50%;
        animation: blink 2s infinite;
    }

    @keyframes blink {
        0%, 50% {
            opacity: 1;
        }
        51%, 100% {
            opacity: 0.3;
        }
    }

    .status span:last-child {
        color: var(--text-secondary);
        font-size: 0.8rem;
    }

    .chat-close {
        position: absolute;
        top: 1rem;
        right: 1rem;
        background: none;
        border: none;
        color: var(--text-secondary);
        cursor: pointer;
        padding: 0.5rem;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .chat-close:hover {
        color: var(--text-primary);
        background: rgba(255, 255, 255, 0.1);
    }

    /* Chat Messages */
    .chat-messages {
        flex: 1;
        padding: 1.5rem;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .message {
        display: flex;
        gap: 0.8rem;
        max-width: 85%;
    }

    .bot-message {
        align-self: flex-start;
    }

    .user-message {
        align-self: flex-end;
        flex-direction: row-reverse;
    }

    .message-avatar {
        width: 35px;
        height: 35px;
        border-radius: 50%;
        overflow: hidden;
        flex-shrink: 0;
    }

    .message-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .message-content {
        background: var(--glass-bg);
        padding: 1rem;
        border-radius: 18px;
        border: 1px solid var(--glass-border);
        position: relative;
    }

    .bot-message .message-content {
        background: rgba(139, 92, 246, 0.1);
        border-color: rgba(139, 92, 246, 0.2);
        border-bottom-left-radius: 5px;
    }

    .user-message .message-content {
        background: rgba(6, 182, 212, 0.1);
        border-color: rgba(6, 182, 212, 0.2);
        border-bottom-right-radius: 5px;
    }

    .message-content p {
        margin: 0;
        color: var(--text-primary);
        line-height: 1.4;
    }

    .message-time {
        font-size: 0.7rem;
        color: var(--text-secondary);
        margin-top: 0.3rem;
        display: block;
    }

    /* Quick Questions */
    .quick-questions {
        margin-top: 1rem;
    }

    .quick-questions p {
        color: var(--text-secondary);
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }

    .quick-buttons {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .quick-btn {
        background: var(--glass-bg);
        border: 1px solid var(--glass-border);
        color: var(--text-primary);
        padding: 0.5rem 1rem;
        border-radius: 20px;
        font-size: 0.8rem;
        cursor: pointer;
        transition: all 0.3s ease;
        white-space: nowrap;
    }

    .quick-btn:hover {
        background: rgba(139, 92, 246, 0.2);
        border-color: var(--accent-purple);
        transform: translateY(-2px);
    }

    /* Chat Input */
    .chat-input-container {
        padding: 1.5rem;
        border-top: 1px solid var(--glass-border);
    }

    .chat-input {
        display: flex;
        align-items: center;
        background: var(--glass-bg);
        border: 1px solid var(--glass-border);
        border-radius: 25px;
        padding: 0.5rem;
    }

    #chat-input {
        flex: 1;
        background: none;
        border: none;
        color: var(--text-primary);
        padding: 0.5rem 1rem;
        font-family: 'Manrope', sans-serif;
        font-size: 0.9rem;
        outline: none;
    }

    #chat-input::placeholder {
        color: var(--text-secondary);
    }

    #send-btn {
        background: linear-gradient(135deg, var(--accent-purple), var(--accent-cyan));
        border: none;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        color: white;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

    #send-btn:hover {
        transform: scale(1.1);
        box-shadow: 0 5px 15px rgba(139, 92, 246, 0.4);
    }

    #send-btn:disabled {
        opacity: 0.5;
        cursor: not-allowed;
        transform: none;
    }

    /* Typing Indicator */
    .typing-indicator {
        display: flex;
        align-items: center;
        gap: 0.8rem;
        margin-top: 0.5rem;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .typing-indicator.active {
        opacity: 1;
    }

    .typing-dots {
        display: flex;
        gap: 0.3rem;
    }

    .typing-dot {
        width: 8px;
        height: 8px;
        background: var(--text-secondary);
        border-radius: 50%;
        animation: typing 1.4s infinite ease-in-out;
    }

    .typing-dot:nth-child(1) { animation-delay: -0.32s; }
    .typing-dot:nth-child(2) { animation-delay: -0.16s; }

    @keyframes typing {
        0%, 80%, 100% {
            transform: scale(0.8);
            opacity: 0.5;
        }
        40% {
            transform: scale(1);
            opacity: 1;
        }
    }

    /* Responsive */
    @media (max-width: 576px) {
        .chat-bot-widget {
            bottom: 20px;
            right: 20px;
        }

        .chat-container {
            width: 320px;
            height: 500px;
        }

        .chat-toggle {
            width: 50px;
            height: 50px;
        }
    }


.view-all-container {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
    padding: 2rem 0;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2.5rem;
    background: var(--glass-bg);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.view-all-btn::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(90deg, var(--accent-purple), var(--accent-cyan), var(--accent-orange), var(--accent-purple));
    border-radius: 50px;
    z-index: -1;
    animation: circulate-border 3s linear infinite;
    background-size: 400% 400%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.view-all-btn:hover::before {
    opacity: 1;
}

.view-all-btn:hover {
    background: rgba(139, 92, 246, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.2);
}

@keyframes circulate-border {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}



.ad-placeholder {
    width: 300px;
    padding: 1rem;
    margin: 2rem auto;
    border: 2px dashed #888;
    border-radius: 8px;
    background: linear-gradient(145deg, #f0f0f0, #e0e0e0);
    box-shadow: 0 0 8px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}
.ad-placeholder:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 12px rgba(0,0,0,0.2);
}
.ad-label {
    font-size: 0.7rem;
    color: #555;
    display: block;
    margin-bottom: 0.5rem;
}
