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

    body {
        font-family: 'Roboto', sans-serif;
        color: #333;
        background-color: #fff;
        
    }

    header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px;
        background-color: #fff;
        border-bottom: 1px solid #ddd;
    }

    header h1 {
        font-size: 24px;
        font-weight: bold;
        display: flex;
        align-items: center;
        color:#333
        
    }

    header h1 span {
        margin-left: 5px;
    }

    nav a {
        margin: 20px 10px;
        text-decoration: none;
        color: #555;
    }

    .hero {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 60px 20px;
        background: linear-gradient(135deg, #f0f8ff, #e0f7fa);
    }

    .hero-text {
        max-width: 65%;
    }

    .hero h2 {
        font-size: 80px;
        font-weight: bold;
        color: #333;
        
    }

    .hero p {
        font-size: 24px;
        margin-top: 20px;
        max-width: 500px;
    }

    .hero button {
        margin-top: 20px;
        padding: 10px 20px;
        font-size: 16px;
        color: white;
        background-color: #6a0dad;
        border: none;
        border-radius: 5px;
        cursor: pointer;
    }

    .hero button:hover {
        background-color: #530d8c;
    }

    .emojis img {
        width: 450px;
        height: auto;
    }

    /* How It Works Section */
#how-it-works {
    padding: 60px 20px;
    background-color: #f9f9f9;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column; /* Set to vertical alignment */
}

.work-text {
    max-width: 800px; /* Optional: Limit max width for readability */
    text-align: center;
}

#how-it-works h2 {
    font-size: 80px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px; /* Add space below heading */
}

#how-it-works ul {
    font-size: 24px;
    margin-top: 40px;
    list-style: none;
    padding: 0;
}

.instruction {
    position: relative;
    margin-bottom: 32px;
    padding-left: 80px; /* Indent for emoji */
    color: #6a0dad;
    font-weight: bold;
    transition: color 0.3s ease, transform 0.3s ease;
}

.instruction:hover {
    color: #ff4081;
    transform: scale(1.05); /* Pop-out effect */
}

.instruction::before {
    content: attr(data-emoji);
    font-size: 40px;
    position: absolute;
    margin-top: -10px;
    left: 0;
    transition: transform 0.3s ease, color 0.3s ease;
}

.instruction:hover::before {
    transform: scale(1.3) rotate(15deg);
    color: #ff4081;
}

/* Unique Colors for Each Line */
.instruction:nth-child(1) { color: #6a0dad; }
.instruction:nth-child(2) { color: #ff4081; }
.instruction:nth-child(3) { color: #ff9800; }
.instruction:nth-child(4) { color: #4caf50; }
.instruction:nth-child(5) { color: #009688; }

/* Hover color change */
.instruction:nth-child(1):hover { color: #9c27b0; }
.instruction:nth-child(2):hover { color: #f50057; }
.instruction:nth-child(3):hover { color: #ffb300; }
.instruction:nth-child(4):hover { color: #66bb6a; }
.instruction:nth-child(5):hover { color: #26a69a; }
    /* About Me Section */
    #about-me {
        background-color: #fff;
        padding: 50px 20px;
        text-align: center;
        margin-top: 40px;
    }

    /* About Me Container */
    .about-container {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 30px;
        max-width: 1000px;
        margin: 0 auto;
    }

    /* Image Styling */
    .about-image img {
        width: 200px; /* You can adjust this size */
        height: auto;
        border-radius: 50%;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    /* Description Section */
    .about-description {
        text-align: left;
        max-width: 600px;
        padding-left: 20px;
    }

    .about-description h2 {
        font-family: 'Roboto', sans-serif;
        font-weight: bold;
        font-size: 32px;
        color: #333;
        text-transform: uppercase;
        letter-spacing: 2px;
        -webkit-text-stroke: 1px black; /* For outline effect */
        -webkit-text-stroke: 1px black;
        margin-bottom: 20px;
    }

    .about-description p {
        font-family: 'Roboto', sans-serif;
        font-weight: normal;
        font-size: 18px;
        color: #555;
        line-height: 1.6;
    }


    footer {
        text-align: center;
        padding: 20px;
        background-color: #eee;
        color: #555;
    }
    /* Footer Content */
    .footer-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Social Media Icons */
    .socials {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-top: 10px;
    }

    .socials a {
        text-decoration: none;
    }

    .socials img {
        width: 30px;
        height: 30px;
        transition: transform 0.3s ease;
    }

    .socials img:hover {
        transform: scale(1.2);
    }


    /* Header Styling */
    /* Search Bar Section */
    #search-bar {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100vh; /* Occupies full screen height */
        padding: 0; /* No padding to ensure full screen usage */
        background-color: #f8f8f8; /* Background color for the section */
    }

    #search-bar h2 {
        font-size: 40px;
        color: #333;
        margin-bottom: 30px;
        font-weight: 600;
    }

    .search-container {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    #emoji-search {
        padding: 15px 20px;
        font-size: 18px;
        width: 350px;
        max-width: 100%;
        border-radius: 30px;
        border: 2px solid #ccc;
        outline: none;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }

    #emoji-search:focus {
        border-color: #ff6347;
        box-shadow: 0 4px 15px rgba(255, 99, 71, 0.3);
    }

    #search-button {
        padding: 15px 20px;
        font-size: 18px;
        background-color: #ff6347;
        color: #fff;
        border: none;
        border-radius: 30px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

    #search-button:hover {
        background-color: #ff4500;
    }
  /* Modal Styling */
/* Style for the modal background (overlay) */
#emoji-modal {
    position: fixed; /* Fix the modal in place */
    top: 0;
    left: 0;
    width: 100%; /* Cover the full screen */
    height: 100%; /* Cover the full screen */
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    display: none; /* Initially hidden */
    justify-content: center; /* Center the content horizontally */
    align-items: center; /* Center the content vertically */
    z-index: 1000; /* Make sure it's on top of other elements */
}

/* Style for the modal content box */
.modal-content {
    background-color: #fff; /* White background */
    border-radius: 8px; /* Rounded corners */
    padding: 20px; /* Spacing around the content */
    text-align: center; /* Center the content inside */
    width: 250px; /* Shortened width for the modal card */
    max-width: 20%; /* Ensure it doesn’t go beyond screen size on mobile */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add shadow for depth */
}

/* Style for the close button */
.close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 25px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: #f00; /* Change color when hovered or focused */
}

/* Style for the emoji display */
#emoji-element {
    font-size: 50px; /* Large font size for the emoji */
    margin-bottom: 10px; /* Space between emoji and name */
}

/* Style for the emoji name */
#emoji-name {
    font-size: 18px; /* Smaller font size for the name */
    color: #333; /* Dark text color */
    margin-top: 10px;
}

    
    /* Footer Styling */
    footer {
        text-align: center;
        padding: 20px;
        background-color: #eee;
        color: #555;
    }
    
    .footer-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    /* Social Media Icons */
    .socials {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-top: 10px;
    }
    
    .socials a {
        text-decoration: none;
    }
    
    .socials img {
        width: 30px;
        height: 30px;
        transition: transform 0.3s ease;
    }
    
    .socials img:hover {
        transform: scale(1.2);
    }
    
    /* Modal for Emoji */
    #emoji-modal {
        display: none;
        position: fixed;
        z-index: 100;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5); /* Dark transparent background */
    }
    
    #emoji-modal .modal-content {
        background-color: #fff;
        padding: 20px;
        border-radius: 10px;
        width: 60%;
        margin: 100px auto;
        text-align: center;
        box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    }
    
    #emoji-modal .modal-content h2 {
        margin-bottom: 20px;
        font-size: 22px;
        color: #333;
    }
    
    #emoji-modal .modal-content p {
        font-size: 18px;
        color: #666;
    }
    
    /* Button & Interaction */
    button {
        cursor: pointer;
        border: none;
        outline: none;
        font-family: inherit;
    }
    
    button:active {
        transform: translateY(2px);
    }
    
    input {
        outline: none;
    }
    
    /* For Smooth Scrolling */
    html {
        scroll-behavior: smooth;
    }
    