    /* Import Google Fonts */
    @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&family=Nunito:wght@300;400;500&display=swap');

    /* Global Styles */
    body {
        font-family: 'Nunito', sans-serif;
        margin: 0;
        padding: 0;
        background-color: #FBFBFB;
        /* Light, professional background */
        color: #333333;
        /* Dark Gray for text */
    }

    /* Header */
    header {
        background-color: #001F3F;
        /* Navy Blue */
        color: white;
        padding: 20px;
        text-align: center;
        font-size: 26px;
        font-weight: 600;
        font-family: 'Montserrat', sans-serif;
    }

    /* Navigation Bar */
    nav {
        display: flex;
        justify-content: center;
        background: #EDE0D4;
        /* Warm Beige */
        padding: 14px;
        box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.08);
    }

    nav a {
        color: #001F3F;
        /* Navy Blue */
        text-decoration: none;
        padding: 10px 18px;
        font-size: 16px;
        font-weight: 500;
        transition: 0.3s ease-in-out;
        border-radius: 5px;
    }

    nav a:hover {
        color: #D4A373;
        /* Gold Accent */
        border-bottom: 3px solid #D4A373;
    }

    .portfolio-intro {
        text-align: center;
        font-size: 18px;
        font-weight: 500;
        padding: 15px;
        background-color: #f8f9fa;
        color: #333;
        border-radius: 8px;
        margin: 10px auto;
        width: 80%;
        box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.1);
    }

    /* Portfolio Header Image */
    .header-image {
        text-align: center;
        margin-bottom: 20px;
    }

    .header-image img {
        width: 100%;
        /* Make it responsive */
        max-height: 320px;
        /* Adjust height */
        object-fit: cover;
        /* Ensure it looks clean */
        border-radius: 12px;
        /* Smooth edges */
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
        /* Soft shadow */
    }

    /* Section Card Design */
    .section-card {
        background: white;
        padding: 24px;
        border-radius: 12px;
        box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.1);
        margin-bottom: 20px;
        border-left: 5px solid #D4A373;
        /* Gold Accent Border */
        transition: transform 0.3s ease-in-out;
    }

    .section-card h2 {
        font-family: 'Montserrat', sans-serif;
        color: #001F3F;
        /* Navy Blue */
    }

    .section-card:hover {
        transform: scale(1.02);
    }

    /* Contact Card */
    .contact-card {
        background: white;
        padding: 24px;
        border-radius: 12px;
        box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.1);
        text-align: center;
        margin: 30px auto;
        max-width: 500px;
    }

    .contact-card h2 {
        font-family: 'Montserrat', sans-serif;
        color: #001F3F;
        /* Navy Blue */
        margin-bottom: 10px;
    }

    .contact-card p {
        font-size: 16px;
        color: #333333;
        margin: 8px 0;
    }

    /* LinkedIn Button */
    .linkedin-button {
        display: inline-flex;
        align-items: center;
        background-color: #D4A373;
        /* Gold Accent */
        color: white;
        text-decoration: none;
        padding: 12px 18px;
        border-radius: 8px;
        font-size: 16px;
        font-weight: 500;
        transition: 0.3s;
        margin-top: 10px;
    }

    .linkedin-button:hover {
        background-color: #B38658;
        /* Darker Gold */
    }

    /* LinkedIn Icon Styling */
    .linkedin-icon {
        width: 20px;
        height: 20px;
        margin-right: 8px;
    }

    /* Footer */
    footer {
        background-color: #001F3F;
        /* Navy Blue */
        color: white;
        text-align: center;
        padding: 14px;
        position: relative;
        margin-top: 20px;
        width: 100%;
        font-size: 14px;
    }

    /* Responsive Design */
    @media screen and (max-width: 768px) {
        nav {
            flex-direction: column;
            text-align: center;
        }

        nav a {
            display: block;
            padding: 10px;
        }
    }

    /* Layout for Side-by-Side Sections */
    .content-row {
        display: flex;
        justify-content: space-between;
        align-items: stretch;
        gap: 20px;
        margin-bottom: 20px;
    }

    /* Left and Right Sections */
    .section-card.left,
    .section-card.right {
        width: 48%;
        /* Makes each box take up half the space */
        background: white;
        padding: 24px;
        border-radius: 12px;
        box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease-in-out;
    }

    /* Hover Effect */
    .section-card.left:hover,
    .section-card.right:hover {
        transform: scale(1.02);
    }

    /* Contact Information Centered */
    .contact-card {
        background: white;
        padding: 24px;
        border-radius: 12px;
        box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.1);
        text-align: center;
        margin: 30px auto;
        max-width: 500px;
    }

    /* Responsive Design: Stack on Mobile */
    @media screen and (max-width: 768px) {
        .content-row {
            flex-direction: column;
        }

        .section-card.left,
        .section-card.right {
            width: 100%;
        }
    }




    /* For the Education Page */
    .code-container {
        background-color: #001F3F;
        /* Dark blue background */
        color: white;
        padding: 20px;
        border-radius: 8px;
        overflow-x: auto;
        /* Enables horizontal scrolling */
        white-space: pre;
        /* Ensures proper code formatting */
        max-width: 100%;
        /* Prevents overflow */
        font-family: 'Courier New', monospace;
    }

    .code-container pre {
        overflow-x: auto;
        /* Allows horizontal scrolling */
        padding: 10px;
        font-size: 14px;
        /* Adjust for readability */
    }

    /* Side-by-Side Layout */
    .content-row {
        display: flex;
        justify-content: space-between;
        align-items: stretch;
        gap: 20px;
        margin-bottom: 20px;
    }

    /* Individual Education Section */
    .section-card.left,
    .section-card.right {
        width: 48%;
        background: white;
        padding: 24px;
        border-radius: 12px;
        box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease-in-out;
        text-align: center;
    }

    /* School Image Styling */
    .school-image {
        width: 100%;
        max-height: 200px;
        object-fit: cover;
        border-radius: 8px;
        margin-bottom: 10px;
    }

    /* Java Output Section */
    .java-output {
        background: #f8f9fa;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.1);
        text-align: center;
        margin-top: 20px;
    }

    .java-output pre {
        background: #001F3F;
        color: white;
        padding: 10px;
        border-radius: 5px;
        text-align: left;
        font-family: 'Courier New', monospace;
    }

    /* Responsive Design: Stack on Mobile */
    @media screen and (max-width: 768px) {
        .content-row {
            flex-direction: column;
        }

        .section-card.left,
        .section-card.right {
            width: 100%;
        }
    }

    /* Work Experience Cards */
    .experience-card {
        display: flex;
        background: white;
        padding: 20px;
        border-radius: 12px;
        box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease-in-out;
        align-items: center;
        gap: 20px;
    }

    /* Company Logo Styling */
    .company-logo {
        width: 120px;
        /* Fixed width */
        height: 120px;
        /* Fixed height */
        object-fit: contain;
        /* Ensures the whole logo is visible */
        background: white;
        border-radius: 10px;
        padding: 10px;
        /* Prevents logos from being too close to edges */
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Experience Content */
    .experience-content {
        flex-grow: 1;
    }

    .experience-content h3 {
        font-size: 20px;
        color: #5D4037;
        /* Deep Warm Brown */
    }

    .work-dates {
        font-size: 14px;
        color: #6B705C;
        /* Soft Olive Green */
    }

    /* Responsive Design */
    @media screen and (max-width: 768px) {
        .experience-card {
            flex-direction: column;
            text-align: center;
        }

        .company-logo {
            margin-bottom: 10px;
        }
    }

    /* Feedback Section */
    .feedback-section {
        background: white;
        padding: 24px;
        border-radius: 12px;
        box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.1);
        text-align: center;
        max-width: 600px;
        margin: auto;
    }

    /* Form Styling */
    .feedback-form {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-top: 20px;
    }

    .feedback-form label {
        font-size: 16px;
        font-weight: 600;
        color: #5D4037;
        text-align: left;
    }

    .feedback-form input,
    .feedback-form textarea {
        width: 100%;
        padding: 10px;
        border: 1px solid #D4A373;
        border-radius: 5px;
        font-size: 14px;
    }

    .feedback-form textarea {
        resize: vertical;
    }

    .button {
        background-color: #D4A373;
        color: white;
        padding: 12px;
        border: none;
        border-radius: 5px;
        font-size: 16px;
        cursor: pointer;
    }

    .button:hover {
        background-color: #B38658;
    }

    /* Thank You Section */
    .thank-you {
        text-align: center;
        margin-top: 30px;
    }

    .thank-you a {
        color: #5D4037;
        font-weight: 600;
        text-decoration: none;
    }

    .thank-you a:hover {
        text-decoration: underline;
    }

    /* Responsive Design */
    @media screen and (max-width: 768px) {
        .feedback-section {
            width: 90%;
        }
    }



    /* Feedback Form */
    .feedback-form {
        display: flex;
        flex-direction: column;
        gap: 12px;
        max-width: 600px;
        margin: auto;
        background: white;
        padding: 20px;
        border-radius: 12px;
        box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.1);
    }

    .feedback-form label {
        font-size: 16px;
        font-weight: 600;
        color: #5D4037;
        text-align: left;
    }

    .feedback-form input,
    .feedback-form textarea {
        width: 100%;
        padding: 10px;
        border: 1px solid #D4A373;
        border-radius: 5px;
        font-size: 14px;
    }

    .feedback-form textarea {
        resize: vertical;
    }

    .button {
        background-color: #D4A373;
        color: white;
        padding: 12px;
        border: none;
        border-radius: 5px;
        font-size: 16px;
        cursor: pointer;
    }

    .button:hover {
        background-color: #B38658;
    }


    /* Section Styles */
    section {
        background: white;
        padding: 24px;
        border-radius: 12px;
        box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.1);
        margin: 20px auto;
        max-width: 800px;
    }

    /* Course List */
    #relevant-courses ul {
        list-style-type: none;
        padding: 0;
    }

    /* Interactive Section */
    #palindrome-interactive iframe {
        width: 100%;
        height: 500px;
        border: none;
        border-radius: 8px;
        box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
    }

    /* C++ Code Display */
    #cppOutput {
        background: #1E1E1E;
        color: #FFFFFF;
        padding: 15px;
        border-radius: 8px;
        font-family: 'Courier New', monospace;
        white-space: pre-wrap;
        overflow-x: auto;
    }


    /* General Styling */
    body {
        font-family: 'Nunito', sans-serif;
        background-color: #f9f9f9;
        margin: 0;
        padding: 0;
        color: #333;
    }

    /* Certifications Intro Section */
    .certifications-intro {
        text-align: center;
        max-width: 800px;
        margin: auto;
        padding: 20px;
    }

    /* Certifications List Styling */
    .certifications-list {
        max-width: 800px;
        margin: auto;
        padding: 20px;
        background: white;
        border-radius: 10px;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    }

    .certifications-list ul {
        list-style-type: none;
        padding: 0;
    }

    .certifications-list li {
        background: #f4f4f4;
        padding: 12px;
        margin-bottom: 10px;
        border-left: 5px solid #001F3F;
        border-radius: 8px;
    }

    /* Search Section */
    .search-certifications {
        text-align: center;
        padding: 20px;
    }

    .search-certifications input {
        padding: 10px;
        width: 60%;
        border: 1px solid #D4A373;
        border-radius: 5px;
    }

    .search-certifications button {
        background-color: #D4A373;
        color: white;
        padding: 10px;
        border: none;
        border-radius: 5px;
        font-size: 16px;
        cursor: pointer;
    }

    .search-certifications button:hover {
        background-color: #B38658;
    }

    /* Replit Embed */
    .replit-embed {
        text-align: center;
        margin: 20px;
    }

    .replit-embed iframe {
        width: 80%;
        border: 1px solid #ddd;
        border-radius: 10px;
    }


    /* Ensure search results appear properly */
    #search-results {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 20px;
        padding: 15px;
        background: white;
        border-radius: 8px;
        box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.1);
        width: 60%;
        min-width: 300px;
    }

    /* Fix input and button alignment */
    form {
        text-align: center;
    }

    input[type="text"] {
        padding: 10px;
        width: 250px;
        border: 1px solid #ccc;
        border-radius: 5px;
    }

    button {
        background-color: #D4A373;
        color: white;
        padding: 10px 15px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
    }

    button:hover {
        background-color: #B38658;
    }

    /* Ensure the results stay within the view */
    #search-results-container {
        text-align: center;
        padding: 20px;
    }

    /* Professional Certifications Introduction */
    .cert-intro {
        text-align: center;
        padding: 20px;
        background: white;
        border-radius: 12px;
        box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.1);
        margin: 20px auto;
        width: 80%;
    }

    /* Certifications List */
    .cert-list {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        padding: 20px;
    }

    .cert-item {
        background: #f8f9fa;
        padding: 15px;
        border-radius: 8px;
        box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.1);
        width: 70%;
        text-align: left;
    }

    /* Search Section */
    .search-section {
        text-align: center;
        padding: 20px;
        background: white;
        border-radius: 12px;
        box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.1);
        margin: 20px auto;
        width: 60%;
    }

    input[type="text"] {
        padding: 10px;
        width: 250px;
        border: 1px solid #ccc;
        border-radius: 5px;
    }

    button {
        background-color: #D4A373;
        color: white;
        padding: 10px 15px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
    }

    button:hover {
        background-color: #B38658;
    }

    /* SQL Query Simulation */
    .sql-query-section {
        text-align: center;
        padding: 20px;
        background: white;
        border-radius: 12px;
        box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.1);
        margin: 20px auto;
        width: 80%;
    }

    /* SQL Code Container */
    .sql-container {
        background: white;
        padding: 20px;
        border-radius: 12px;
        box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.1);
        text-align: left;
        max-width: 1000px;
        /* Adjust width */
        margin: 20px auto;
        /* Center horizontally */
        overflow-x: auto;
        /* Allow horizontal scrolling if needed */
        white-space: pre-wrap;
        /* Preserve formatting */
    }

    /* SQL Code Block */
    .sql-code {
        background-color: #f8f9fa;
        padding: 15px;
        border-radius: 8px;
        box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.1);
        font-family: "Courier New", monospace;
        font-size: 14px;
        overflow-x: auto;
        /* Enable scrolling for long code */
        max-width: 100%;
    }

    /* Responsive Design */
    @media screen and (max-width: 768px) {
        .sql-container {
            width: 90%;
            /* Ensure it fits on smaller screens */
            padding: 15px;
        }

        .sql-code {
            font-size: 12px;
            /* Adjust font size for smaller screens */
        }
    }

    /* Keep SQL content inside the box */
    .sql-data {
        background: white;
        padding: 20px;
        border-radius: 12px;
        box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.1);
        max-width: 90%;
        margin: 20px auto;
        overflow-x: auto;
        /* Allows scrolling if needed */
    }

    /* Keep SQL code readable */
    .sql-data pre {
        background: #f4f4f4;
        padding: 15px;
        border-radius: 5px;
        overflow-x: auto;
        white-space: pre-wrap;
        word-wrap: break-word;
        font-family: 'Courier New', monospace;
    }

    /* SQL Data Scrollable Container */
    .sql-scroll-container {
        width: 100%;
        /* Full width */
        max-width: 100%;
        overflow-x: auto;
        /* Enable horizontal scrolling */
        background-color: #f8f9fa;
        /* Light background */
        padding: 15px;
        border-radius: 8px;
        box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.1);
    }

    /* Ensures long lines wrap properly */
    .sql-scroll-container pre {
        white-space: pre;
        /* Prevents text wrapping */
        font-size: 14px;
        min-width: 800px;
        /* Forces horizontal scroll if content is too wide */
    }


    /* Code Scrollable Container */
    .code-scroll-container {
        width: 100%;
        /* Full width */
        max-width: 100%;
        overflow-x: auto;
        /* Enable horizontal scrolling */
        background-color: #1e1e1e;
        /* Dark mode code background */
        padding: 15px;
        border-radius: 8px;
        box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.1);
    }

    /* Ensures long lines wrap properly */
    .code-scroll-container pre {
        white-space: pre;
        /* Prevents text wrapping */
        font-size: 14px;
        min-width: 800px;
        /* Forces horizontal scroll if content is too wide */
        color: #ffffff;
        /* White text for readability */
        font-family: 'Courier New', monospace;
        /* Code font */


        /* Intro Section */
        .intro {
            text-align: center;
            max-width: 800px;
            margin: auto;
            padding: 20px;
        }

        /* Projects List */
        .projects-list {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
            padding: 20px;
        }

        /* Individual Project Cards */
        .project-card {
            background: white;
            padding: 24px;
            border-radius: 12px;
            box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.1);
            max-width: 600px;
            text-align: center;
            border-left: 5px solid #D4A373; /* Gold Accent */
            transition: transform 0.3s ease-in-out;
        }

        /* Project Card Hover Effect */
        .project-card:hover {
            transform: scale(1.02);
        }

        /* Project Titles */
        .project-card h2 {
            font-family: 'Montserrat', sans-serif;
            color: #001F3F; /* Navy Blue */
        }

        /* Project Description */
        .project-card p {
            font-size: 16px;
            color: #333;
        }

        /* Project Links */
        .project-link {
            display: inline-block;
            background-color: #D4A373; /* Gold Accent */
            color: white;
            text-decoration: none;
            padding: 10px 15px;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 500;
            transition: 0.3s;
        }

        .project-link:hover {
            background-color: #B38658; /* Darker Gold */
        }

        /* Footer */
        footer {
            background-color: #001F3F; /* Navy Blue */
            color: white;
            text-align: center;
            padding: 14px;
            margin-top: 20px;
            font-size: 14px;
        }

        /* Responsive Design */
        @media screen and (max-width: 768px) {
            .projects-list {
                width: 90%;
                padding: 10px;
            }

            .project-card {
                width: 100%;
            }
        }