
/* General Styles */
body {
    background-color: #121212;
    color: #ffffff;
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background-color: #222;
}
.logo {
    display: flex;
    align-items: center;
}
.logo img {
    height: 60px; /* Adjust size as needed */
    border-radius: 50px;
    margin-left: 20px;
}
.logo-text {
    font-size: 25px;
    font-weight: bold;
    display: inline-block;
    color: white;
    margin-left: 10px;
}

.logo-text span {
    display: inline-block;
    transition: text-shadow 0.3s ease-in-out, transform 0.3s ease-in-out, color 0.3s ease-in-out;
}

.logo-text span:hover {
    color: #ffcc00; /* Glowing color */
    text-shadow: 0 0 10px #ffcc00, 0 0 20px #ff9900, 0 0 30px #ff6600;
    transform: scale(0.7); /* Zoom-out effect */
}

/* Adjust the nav-links to move left */
.nav-links {
    display: flex;
    gap: 20px;
    margin-left: 0;
    margin-right: 100px;
}

/* Navigation links */
.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    padding: 8px 15px;
    transition: 0.3s;
    position: relative;
}

.nav-links a:hover {
    background-color: #FFA500;
    color: #000;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(255, 165, 0, 0.6); /* Shadow effect on hover */
}
/* Contact Button Styling */
.nav-links a:last-child {
    background: linear-gradient(45deg, #ff7e00, #ffcc00);
    color: #222;
    font-weight: bold;
    border-radius: 15px;
    padding: 10px 20px;
    transition: 0.3s ease-in-out;
    box-shadow: 0 4px 10px rgba(255, 165, 0, 0.6);
}

.nav-links a:last-child:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(255, 140, 0, 0.8);
}


/* Introduction Section Styling */
.intro {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50vh;
    background: url('./assests/sparkle\ video.gif') no-repeat center center; /* Background image */
    background-size: cover; /* Ensures the image covers the entire section */
    color: white;
    text-align: center;
    padding: 20px;
    position: relative;
    box-shadow: 0 0 15px rgba(255, 102, 0, 0.8), 0 0 25px rgba(0, 0, 0, 0.8); /* Blurred border shadow */
}

/* Remove sparkle code here */

/* Text and Animation Styling */
.intro-text {
    font-size: 4rem;
    font-weight: bold;
    letter-spacing: 3px;
    line-height: 1.2;
    position: relative;
    display: inline-block;
    background: linear-gradient(45deg, #ff6a00, #ffbb00, #ff4500);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    color: transparent;
    animation: gradientAnimation 3s ease infinite, slideIn 2s ease-out forwards;
}

/* Gradient animation effect */
@keyframes gradientAnimation {
    0% {
        background-position: 200% 0;
    }
    50% {
        background-position: 0 100%;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Slide-in animation */
@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    50% {
        opacity: 1;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Delay animations for each part of the text */
.intro-text span:nth-child(1) {
    animation-delay: 0.5s;
}

.intro-text span:nth-child(2) {
    animation-delay: 1s;
}

.intro-text span:nth-child(3) {
    animation-delay: 1.5s;
}

/* Subtle hover effect */
.intro-text span:hover {
    background: linear-gradient(45deg, #ff6a00, #ffffff);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    color: transparent;
    transform: scale(1.1);
    transition: all 0.3s ease-in-out;
}

/* Tagline Styling */
.intro-tagline {
    font-size: 1.5rem;
    margin-top: 20px;
    font-weight: 500;
    color: #f0f0f0;
    opacity: 0;
    animation: fadeInTagline 2s ease-in-out 2s forwards;
}

@keyframes fadeInTagline {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5); /* Add shadow to hero */
}

.slider {
    display: flex;
    width: 100%;
    height: 60vh;
    overflow: hidden;
}

.slides {
    display: flex;
    transition: transform 0.8s ease-in-out;
}

.slides img {
    width: 100vw;
    height: 60vh;
    object-fit: cover;
    border-radius: 10px; /* Rounded corners */
}

/* Services */
#services {
    padding: 50px 0;
    text-align: center;
    background-color: black;
}

#services h2 {
    font-size: 40px;
    margin-bottom: 30px;
    color: orange;
}

/* Services Container */
.services-container {
    display: flex;
    justify-content: center; /* Centers the boxes in the row */
    flex-wrap: wrap; /* Ensures the boxes wrap into the next row when space is unavailable */
    gap: 20px;
    padding: 0 10%; /* Centers the content horizontally within the section */
}

/* Individual Service Box Styling */
.service-box {
    background-color: #ffffff;
    border: 3px solid orange;
    padding: 10px;
    border-radius: 10px;
    width: 30%; /* Ensures three boxes per row */
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Hover Effect */
.service-box:hover {
    transform: scale(1.05) translateY(-10px);
    background-color: #ff6a00;
    color: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Responsive Design for Service Boxes */
@media (max-width: 768px) {
    .services-container {
        flex-direction: column;
        align-items: center;
        padding: 0 5%; /* Adjust padding for smaller screens */
    }

    .service-box {
        width: 80%; /* Full width for small screens */
        margin-bottom: 20px;
    }
}



/* Showcase Styling */
.showcase {
    text-align: center;
    margin-bottom: 30px;
    color: orange;
}

#designs h2 {
    font-size: 40px;
}

/* Design Gallery - Grid Layout */
.design-gallery {
    display: flex;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); /* Automatically fills with boxes */
    gap: 25px;
    justify-items: center; /* Ensures each box is centered in its grid cell */
    padding: 20px; /* Optional, adds padding inside the gallery */
}

/* Design Item Styling */
.design-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid #e37002;
    height: 250px; /* Fixed height */
    width: 100%; /* Make sure it takes up the full available width in the grid */
}

/* Design Image Styling */
.design-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures uniform size */
    display: block;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
    cursor: pointer;
}

.design-item:hover img {
    transform: scale(1.05);
}
.view-message {
    position: absolute;
    bottom: 20px; /* Position at the bottom */
    left: 50%;
    transform: translateX(-50%); /* Center the message horizontally */
    background-color: rgba(247, 151, 7, 0.6);
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    visibility: hidden;
}
/* Show the message when hovering over the design item */
.design-item:hover .view-message {
    opacity: 1;
    visibility: visible;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    animation: fadeIn 0.3s ease-in-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-content {
    max-width: 80%;
    max-height: 80%;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

.modal:hover .contact-message {
    display: block;
}

.close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
}

.contact-message {
    color: white;
    margin-top: 15px;
    font-size: 18px;
    background: rgba(236, 110, 7, 0.6);
    padding: 10px;
    border-radius: 5px;
    display: none;
    text-align: center;
}

.view-more-btn {
    background-color: orange; /* Matching the orange color theme */
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

.view-more-btn:hover {
    background-color: #e37002; /* Darker orange for hover effect */
}

/* Contact Message Styling */
.contact-message {
    color: white;
    margin-top: 15px;
    font-size: 18px;
    background: rgba(236, 110, 7, 0.6);
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    display: flex;
    flex-direction: column; /* Align items vertically */
    align-items: center;
}

.contact-btn {
    background-color: #e37002;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

.contact-btn:hover {
    background-color: #c56001;
}

/* Adjust the message paragraph */
.contact-message p {
    margin: 5px 0; /* Add some space between lines */
}

/* Adjust the "Contact Us" button for better spacing */
.contact-message .contact-btn {
    margin-top: 15px; /* Give extra space above the button */
}

/* Clients and Collaborations Section */
.clients-collaborations {
    padding: 50px 20px;
    text-align: center;
    background-color: #333333;
}

#clients-collaborations h2{
    margin-top: -20px;
    font-size: 40px;
    color: orange;
}
/* Center Stats Section */
.stats {
    display: flex;
    justify-content: center; /* Center align */
    gap: 30px;
    align-items: center;
    margin: 20px auto; /* Center the stats */
}

/* Stat Box */
.stat-box {
    background-color: black ;
    border-radius: 10px;
    box-shadow: 0 4px 8px #FFA500;
    padding: 20px;
    width: 180px; /* Increase width */
    text-align: center;
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px orange;
}

/* Increase Stat Number Size */
.stat-number {
    font-size: 100px !important; /* Increased size */
    font-weight: bold !important;
    color: orange !important;
}

.stat-box p {
    margin: 0;
    font-size: 1.5rem;
    color: white;
}

/* Auto-Scrolling Logo Section */
.logo-container {
    display: flex;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
    padding: 20px 0;
}

/* Individual Logo Box */
.logo-box {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: orange;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(255, 165, 0, 0.6);
    flex-shrink: 0; /* Prevents resizing */
    margin-right: 20px; /* Spacing */
}

.logo-box img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

/* Scroll Animation */
@keyframes scrollLogos {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }
}

.logo-container {
    display: flex;
    animation: scrollLogos 10s linear infinite;
}





/* Testimonials */
/* Testimonials Section */
.testimonials {
    padding: 50px 20px;
    background-color: #1e1e1e;
    text-align: center;
}

.testimonials h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
    color: #FFA500;
}

/* Wrapper to contain both testimonials and buttons */
.testimonial-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    max-width: 80%;
    margin: auto;
}

/* Scrollable container */
.testimonial-container {
    display: flex;
    gap: 15px;
    overflow-x: auto; /* Enables horizontal scrolling */
    scroll-behavior: smooth;
    scrollbar-width: none; /* Hides scrollbar */
    width: 100%;
    padding: 10px 0;
}

/* Hide scrollbar for WebKit browsers */
.testimonial-container::-webkit-scrollbar {
    display: none;
}

/* Individual testimonial boxes */
.testimonial-box {
    background-color: black;
    border: #FFA500;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 250px; /* Fixed width */
    text-align: center;
    transition: transform 0.3s ease;
    border-radius: 8px;
    flex: 0 0 auto; /* Prevents shrinking */
}

.testimonial-box:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 165, 0, 0.8);
}

.testimonial-text {
    font-size: 1.2em;
    color: white;
    margin-bottom: 15px;
}

.client-name {
    font-size: 1em;
    font-weight: bold;
    color: orange;
}
/* Scroll Buttons */
.scroll-btn {
    background-color: orange;
    color: white;
    border: none;
    padding: 0; 
    cursor: pointer;
    font-size: 1.5em; /* Adjusted for better fit */
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    border-radius: 50%;
    width: 40px; 
    height: 40px; 
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, transform 0.2s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

/* Hover Effect */
.scroll-btn:hover {
    background-color: darkorange;
    transform: translateY(-50%) scale(1.1);
}

/* Left Button Position */
.left-btn {
    left: -20px; /* Adjusted */
}

/* Right Button Position */
.right-btn {
    right: -20px; /* Adjusted */
}


/* Responsive Adjustments */
@media (max-width: 1024px) {
    .testimonial-wrapper {
        max-width: 100%;
    }
    
    .testimonial-box {
        width: 220px;
    }

    .scroll-btn {
        display: none; /* Hides arrow buttons on smaller screens */
    }
}

/* Social Media */
.connect-us {
    background-color: #f1f1f1;
    padding: 50px 0;
}

.connect-us .container {
    width: 80%;
    margin: 0 auto;
}

.connect-us h2 {
    font-size: 36px;
    color: orange;
    margin-bottom: 20px;
    text-align: center;
}


/* Flexbox Layout */
.contact-content {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.contact-form-container {
    flex: 1;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px orange;
    transition: transform 0.3s ease;
}

.contact-form-container:hover {
    transform: translateY(-10px); /* Hover effect to lift the form */
}

.contact-form-container h2 {
    font-size: 28px;
    color: orange;
    margin-bottom: 20px;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form label {
    font-size: 16px;
    color: black;
    text-align: left;
}

.contact-form input,
.contact-form textarea {
    padding: 10px;
    font-size: 16px;
    border: 1px solid orangered;
    border-radius: 4px;
}

.contact-form .submit-btn {
    background-color: white;
    color: orange;
    padding: 15px;
    font-size: 16px;
    font-weight: bold;
    border: 2px solid orange;
    border-radius: 4px;
    cursor: pointer;
    align-self: center;
    transition: background-color 0.3s ease;
}

.contact-form .submit-btn:hover {
    background-color: orange;
    color: white;
}

/* Social Media Links as Blocks */
.social-links {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.social-links .social-link {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
    position: relative; /* Ensure proper stacking */
}

.social-links .social-link:hover {
    transform: translateY(-10px);
    background-color: orange;
}

.social-links .social-link a {
    font-size: 18px;
    color: orangered;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: color 0.3s ease;
    display: block; /* Make the entire block clickable */
    width: 100%;
    height: 100%;
    pointer-events: auto;
}

.social-links .social-link:hover a {
    color: white; /* Ensure contrast */
}

.social-links i {
    font-size: 24px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-content {
        flex-direction: column;
        align-items: center;
    }

    .social-links {
        grid-template-columns: 1fr;
    }

    .social-links .social-link {
        width: 100%;
    }
}


   /* Footer Styling */
 .footer {
    background-color: #111;  /* Dark background */
    color: white;
    text-align: center;
    padding: 20px 0;
    font-size: 16px;
    position: relative;
    bottom: 0;
    width: 100%;
 }

 /* Footer Text */
 .footer p {
    margin: 0;
    font-weight: bold;
 }

 /* Social Icons */
 .footer .social-icons {
    margin-top: 10px;
 }

 .footer .social-icons a {
    color: white; /* Ensures the icon remains white */
    font-size: 24px; /* Default size */
    margin: 0 12px;
    display: inline-block;
    text-decoration: none; /* Removes default link styles */
    transition: transform 0.3s ease, text-shadow 0.3s ease, color 0.3s ease;
 }

 /* Hover Effect */
 .footer .social-icons a:hover {
    transform: scale(1.3);  /* Increase icon size */
    color: #f39c12 !important; /* Change color to orange */
    text-shadow: 0 0 15px #f39c12, 0 0 25px #f39c12; /* Glowing orange effect */
 }

 .highlight {
    animation: highlightEffect 1.5s ease-in-out;
}

@keyframes highlightEffect {
    0% { background-color: orangered; }  /* Yellow flash */
    50% { background-color: transparent; }
    100% { background-color: orangered; }
}

/* Modal Background */
.success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Success Modal Content (Specific) */
.success-modal-content {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 350px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    animation: fadeIn 0.3s ease-in-out;
}

/* Modal Heading */
.success-modal-content h2 {
    color: #ff6600;
    margin-bottom: 10px;
}

/* Modal Text */
.success-modal-content p {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
}

/* Close Button */
.close-btn {
    background: #ff6600;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
}

.close-btn:hover {
    background: #e65c00;
}

/* Fade-in Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

/* Preloader Styles */
#preloader {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: #0d0d0d; /* Dark minimal background */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 9999;
    animation: flickerBackground 3s infinite alternate;
}

/* Subtle flickering effect for modern UI look */
@keyframes flickerBackground {
    0% { background-color: #0d0d0d; }
    50% { background-color: #1a1a1a; }
    100% { background-color: #0d0d0d; }
}

/* Preloader Styles */
#preloader {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: #0d0d0d; /* Dark minimal background */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 9999;
    animation: flickerBackground 3s infinite alternate;
}

/* Subtle flickering effect for modern UI look */
@keyframes flickerBackground {
    0% { background-color: #0d0d0d; }
    50% { background-color: #1a1a1a; }
    100% { background-color: #0d0d0d; }
}

/* Logo Animation */
/* Logo Styling */
.preloader-logo {
    width: 120px; /* Adjust size */
    height: 120px; /* Make it a perfect circle */
    border-radius: 50%; /* Circular shape */
    margin-bottom: 20px;
    margin-left: 50px;
    box-shadow: 0px 0px 10px rgba(255, 92, 53, 0.7);
    animation: fadeInShadow 1.5s ease-in-out infinite alternate, pulseShadow 2s infinite alternate ease-in-out;
}

/* Soft fade-in animation */
@keyframes fadeInShadow {
    0% { opacity: 0.3; transform: scale(0.9); }
    100% { opacity: 1; transform: scale(1); }
}

/* Dynamic shadow animation (Breathing effect) */
@keyframes pulseShadow {
    0% {
        box-shadow: 0px 0px 5px rgba(255, 92, 53, 0.4);
    }
    50% {
        box-shadow: 0px 0px 20px rgba(255, 92, 53, 0.8);
    }
    100% {
        box-shadow: 0px 0px 5px rgba(255, 92, 53, 0.4);
    }
}


/* Zooming Text Animation */
.flipping-cards {
    display: flex;
    justify-content: space-between;
    width: 230px;
}

/* Card Animation */
.card {
    width: 35px;
    height: 45px;
    background: #ff5c35;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    font-weight: bold;
    border-radius: 4px;
    backface-visibility: hidden;
    transform-style: preserve-3d;
    animation: zoomEffect 2s infinite alternate ease-in-out;
}

/* Delayed Zoom Animations */
.card:nth-child(1) { animation-delay: 0s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.4s; }
.card:nth-child(4) { animation-delay: 0.6s; }
.card:nth-child(5) { animation-delay: 0.8s; }
.card:nth-child(6) { animation-delay: 1s; }
.card:nth-child(7) { animation-delay: 1.2s; }

/* Zoom In/Out Animation */
@keyframes zoomEffect {
    0% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(1); opacity: 0.8; }
}

/* Fade-in Effect */
@keyframes fadeIn {
    0% { opacity: 0.3; transform: scale(0.9); }
    100% { opacity: 1; transform: scale(1); }
}


/* Hide by Default */
.hidden {
    display: none;
}

#notificationButton {
    position: fixed;
    bottom: 50px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: orange;
    color: white;
    font-size: 24px;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(255, 165, 0, 0.8);
    cursor: pointer;
    transition: 0.3s;
    z-index: 9999;
    border: none;
    outline: none;
}

#notificationButton:hover {
    box-shadow: 0 0 20px rgba(255, 140, 0, 1);
}

/* Notification Box */
#notificationContainer {
    position: fixed;
    bottom: 110px;
    right: 30px;
    width: 350px;
    background: white;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 10px;
    display: none; /* Initially hidden */
    z-index: 9999;
}

/* Notification Title */
#notificationContainer h3 {
    margin: 0;
    padding-bottom: 5px;
    border-bottom: 1px solid #ddd;
    font-size: 16px;
    color: orange;
}

/* Toast Notifications */
.toast {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    padding: 10px;
    margin: 5px 0;
    border-radius: 5px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
    font-size: 14px;
    color: black;
    width: 100%;
    box-sizing: border-box;
}

/* Close Button for Each Notification */
.toast button {
    background-color: orange;
    color: white;
    border: none;
    padding: 5px 8px;
    cursor: pointer;
    border-radius: 5px;
}

.toast button:hover {
    background-color: orangered;
}











