       /* CSS Reset
       * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    } */

    /* Global Styles */
    html {
        scroll-behavior: smooth; /* Enable smooth scrolling */
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    body {
        line-height: 1.6;
        color: #333;
        background-color: #f9f9f9;
    }

    a {
        text-decoration: none;
        color: #333;
        transition: color 0.3s ease;
    }

    a:hover {
        color: #4a89dc;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    /* Header Styles */
    header {
        background-color: #fff;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 1000;
        padding: 15px 0;
    }

    .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        font-size: 24px;
        font-weight: bold;
    }

    .logo a {
        display: flex;
        align-items: center;
    }

    .logo-highlight {
        color: #4a89dc;
        margin-left: 5px;
    }

    /* Navigation Styles */
    nav ul {
        display: flex;
        list-style: none;
    }

    nav ul li {
        padding: 0 15px;
    }

    nav ul li a {
        font-weight: 500;
        position: relative;
    }

    nav ul li a::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background-color: #4a89dc;
        transition: width 0.3s ease;
    }

    nav ul li a:hover::after {
        width: 100%;
    }

    .mobile-menu-toggle {
        display: none;
        font-size: 24px;
        cursor: pointer;
    }

    /* Hero Section */
    .hero {
        height: 100vh;
        display: flex;
        align-items: center;
        background-color: #f0f4f8;
        padding-top: 60px;
    }

    .hero-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .hero-text {
        flex: 1;
        padding-right: 20px;
    }

    .hero-image {
        flex: 1;
        text-align: center;
    }

    .hero-image img {
        max-width: 100%;
        height: auto;
        border-radius: 20px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

    .hero h1 {
        font-size: 48px;
        margin-bottom: 20px;
        font-weight: 700;
    }

    .hero p {
        font-size: 18px;
        margin-bottom: 30px;
        color: #555;
    }

    .highlight {
        color: #4a89dc;
        font-weight: 700;
    }

    .btn {
        display: inline-block;
        padding: 12px 28px;
        background-color: #4a89dc;
        color: #fff;
        border-radius: 50px;
        font-weight: 600;
        transition: all 0.3s ease;
        border: 2px solid #4a89dc;
    }

    .btn:hover {
        background-color: transparent;
        color: #4a89dc;
    }

    .btn-secondary {
        background-color: transparent;
        color: #4a89dc;
        margin-left: 15px;
    }

    .btn-secondary:hover {
        background-color: #4a89dc;
        color: #fff;
    }
    /* projects section  */
    .view-all-container {
        display: flex;
        justify-content: center;
        margin-top: 50px;
    }
    
    .view-all-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 12px 30px;
        background-color: #1b6dc5;
        color: #ffffff;
        border-radius: 4px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        border: 2px solid #2d3e50;
        gap: 10px;
        position: relative;
        overflow: hidden;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }
    
    .view-all-btn i {
        transition: transform 0.3s ease;
    }
    
    .view-all-btn:hover {
        background-color: transparent;
        color: #2d3e50;
        transform: translateY(-3px);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    }
    
    .view-all-btn:hover i {
        transform: translateX(5px);
    }
    
    .view-all-btn:active {
        transform: translateY(0);
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }
    
    /* You can add this if you want a subtle animation when the button appears */
    .view-all-btn {
        animation: fadeInUp 0.6s ease-out forwards;
    }
    
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    /* About Section */
    .about {
        padding: 100px 0;
        background-color: #fff;
    }

    .section-title {
        text-align: center;
        margin-bottom: 50px;
        position: relative;
    }

    .section-title h2 {
        font-size: 36px;
        font-weight: 700;
        position: relative;
        display: inline-block;
    }

    .section-title h2::after {
        content: '';
        position: absolute;
        width: 70px;
        height: 3px;
        background-color: #4a89dc;
        bottom: -10px;
        left: calc(50% - 35px);
    }

    .about-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }

    .about-image {
        flex: 1;
        min-width: 300px;
        text-align: center;
    }

    .about-image img {
        max-width: 100%;
        border-radius: 20px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

    .about-text {
        flex: 1;
        padding: 0 20px;
        min-width: 300px;
    }

    .about-text h3 {
        font-size: 24px;
        margin-bottom: 20px;
        font-weight: 600;
    }

    .skill-bars {
        margin-top: 30px;
    }

    .skill-bar {
        margin-bottom: 20px;
    }

    .skill-info {
        display: flex;
        justify-content: space-between;
        margin-bottom: 5px;
    }

    .progress-line {
        height: 10px;
        background-color: #e6e6e6;
        border-radius: 10px;
        position: relative;
        overflow: hidden;
    }

    .progress-line span {
        height: 100%;
        background-color: #4a89dc;
        position: absolute;
        border-radius: 10px;
        transition: width 1s ease;
    }

    /* Projects Section */
    .projects {
        background-color: #f0f4f8;
        padding: 100px 0;
    }

    .projects-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 30px;
    }

    .project-card {
        background-color: #fff;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .project-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

    .project-image {
        height: 200px;
        overflow: hidden;
    }

    .project-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .project-card:hover .project-image img {
        transform: scale(1.1);
    }

    .project-content {
        padding: 20px;
    }

    .project-content h3 {
        margin-bottom: 10px;
        font-size: 22px;
    }

    .project-tags {
        display: flex;
        flex-wrap: wrap;
        margin: 10px 0;
    }

    .tag {
        font-size: 12px;
        background-color: #f0f4f8;
        color: #555;
        padding: 3px 10px;
        border-radius: 50px;
        margin-right: 8px;
        margin-bottom: 8px;
    }

    .project-links {
        margin-top: 15px;
    }

    .project-links a {
        margin-right: 15px;
        font-size: 14px;
        font-weight: 600;
    }

    .project-links a i {
        margin-right: 5px;
    }

    /* Contact Section */
    .contact {
        padding: 100px 0;
        background-color: #fff;
    }

    .contact-content {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .contact-info {
        flex: 1;
        min-width: 300px;
        padding-right: 20px;
    }

    .contact-info h3 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .contact-info p {
        margin-bottom: 20px;
    }

    .contact-item {
        display: flex;
        align-items: center;
        margin-bottom: 15px;
    }

    .contact-item i {
        font-size: 20px;
        color: #4a89dc;
        margin-right: 15px;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: rgba(74, 137, 220, 0.1);
    }

    .contact-form {
        flex: 1;
        min-width: 300px;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 500;
    }

    .form-control {
        width: 100%;
        padding: 15px;
        border: 1px solid #e6e6e6;
        border-radius: 10px;
        font-size: 16px;
        transition: border-color 0.3s ease;
    }

    .form-control:focus {
        outline: none;
        border-color: #4a89dc;
    }

    textarea.form-control {
        resize: vertical;
        min-height: 150px;
    }

    /* Footer */
    footer {
        background-color: #222;
        color: #fff;
        padding: 50px 0 20px;
    }

    .footer-content {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        margin-bottom: 30px;
    }

    .footer-column {
        flex: 1;
        min-width: 230px;
        margin-bottom: 30px;
    }

    .footer-column h3 {
        font-size: 18px;
        margin-bottom: 20px;
        position: relative;
        padding-bottom: 10px;
    }

    .footer-column h3::after {
        content: '';
        position: absolute;
        width: 40px;
        height: 2px;
        background-color: #4a89dc;
        bottom: 0;
        left: 0;
    }

    .footer-links {
        list-style: none;
    }

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-links a {
        color: #bbb;
        transition: color 0.3s ease;
    }

    .footer-links a:hover {
        color: #4a89dc;
    }

    .social-links {
        display: flex;
        margin-top: 15px;
    }

    .social-links a {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #333;
        color: #fff;
        margin-right: 10px;
        transition: background-color 0.3s ease;
    }

    .social-links a:hover {
        background-color: #4a89dc;
    }

    .footer-bottom {
        text-align: center;
        padding-top: 20px;
        border-top: 1px solid #333;
        font-size: 14px;
        color: #bbb;
    }

    /* Animation Classes */
    .fade-in {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.5s ease, transform 0.5s ease;
    }

    .fade-in.active {
        opacity: 1;
        transform: translateY(0);
    }

    /* Back to Top Button */
    .back-to-top {
        position: fixed;
        bottom: 30px;
        right: 30px;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background-color: #4a89dc;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        cursor: pointer;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 1000;
    }

    .back-to-top.active {
        opacity: 1;
        visibility: visible;
    }

    .back-to-top:hover {
        background-color: #3a79cc;
    }

    /* Responsive Styles */
    @media screen and (max-width: 768px) {
        .mobile-menu-toggle {
            display: block;
        }

        nav ul {
            position: absolute;
            top: 70px;
            left: 0;
            width: 100%;
            background-color: #fff;
            flex-direction: column;
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
            padding: 20px 0;
            clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
            transition: clip-path 0.4s ease;
        }

        nav ul.active {
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        }

        nav ul li {
            text-align: center;
            padding: 15px;
        }

        .hero-content {
            flex-direction: column;
        }

        .hero-text, .hero-image {
            flex: none;
            width: 100%;
            text-align: center;
            padding-right: 0;
            margin-bottom: 30px;
        }

        .about-content {
            flex-direction: column;
        }

        .about-image {
            margin-bottom: 30px;
            order: 1;
        }

        .about-text {
            order: 2;
            padding: 0;
        }

        .contact-content {
            flex-direction: column;
        }

        .contact-info {
            margin-bottom: 40px;
            padding-right: 0;
        }
    }