body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    color: #333;
    text-align: center;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #2c3e50;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar .logo img {
    height: 40px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li {
    display: inline;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #ffcc00;
}
.contact-dropdown {
    position: relative;
}

.contact-menu {
    display: none;
    position: absolute;
    background: #2c3e50;
    padding: 10px;
    border-radius: 5px;
    top: 100%;
    left: 0;
    min-width: 150px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}

.contact-menu a {
    display: block;
    color: white;
    padding: 8px 12px;
    text-decoration: none;
    transition: 0.3s;
}

.contact-menu a:hover {
    background: #ffcc00;
    color: #222;
}

.contact-dropdown:hover .contact-menu {
    display: block;
}

/* Software Section */
.software-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
	background: linear-gradient(to left, #ffcc99, #ffffff); /* Peach to white gradient */
    margin: 50px auto;
    max-width: 90%;
	border-radius: 10px;
	margin-top: 10px;
}

.software {
    display: flex;
    flex-direction: column; /* Stack content vertically */
    align-items: center; /* Center content horizontally */
    background: transparent;
    padding: 50px; /* Adjust padding to balance content */
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 60%;
    margin-top: 20px;
    margin-bottom: 50px;
}

.software img {
    width: 100%;
    height: auto;
    max-width: 500px;
    margin-bottom: 20px; /* Add space below the image */
}


.software-info {
    text-align: left;
    max-width: 100%; /* Ensure it fits well within the container */
}

.software h2 {
    font-size: 20px;
    color: #2c3e50;
}

.software-info p {
    font-size: 16px;
    color: #555;
    text-align: justify;
}
.button-download-wrapper {
    display: flex;
    flex-direction: column; /* Stack button and count vertically */
    align-items: center; /* Center button and count horizontally */
    margin-top: 30px; /* Space above the button */
}

/* Button Wrapper */
.button-wrapper {
    display: flex;
    justify-content: center; /* Center the button horizontally */
    width: 100%; /* Ensure the wrapper takes full width */
    margin-bottom: 10px; /* Space between button and download count */
}

/* Button */
.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #1abc9c;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    animation: pulse 2s infinite ease-in-out;
    width: auto; /* Ensures the width adapts to content */
    min-width: 150px; /* Optional: ensures a minimum button width */
    height: 45px; /* Optional: sets the height of the button */
    line-height: 45px; /* Aligns the text vertically in the button */
    text-align: center; /* Centers the text horizontally */
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); } /* Grows slightly */
    100% { transform: scale(1); } /* Returns to normal size */
}

.btn:hover {
    background-color: #16a085;
}

/* Download Count */
.download-count {
    font-size: 14px;
    color: #555;
    margin-top: 5px;
}

.content-wrapper {
    display: flex;
}


.container {
	justify-content: center;
    flex: 1; /* Allow it to grow and fill available space */
    gap: 1.5em;
    margin-top: 2em;
    margin-bottom: 2em;
}



/* Product */
.product {
    text-align: left;
    border-radius: 8px;
	width: 90%;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
    background: #fff;
}


.product img {
    width: 100%;
    height: auto;
    display: block;
}

.product a {
    text-decoration: none;
    color: #333;
}

.product p {
    font-size: 1em;
    color: #555;
    margin: 0 0 1em;
}

.product h3 {
    font-size: 1em;
}

.footer {
    background-color: #f8f9fa;
    padding: 20px;
    text-align: center;
    border-top: 2px solid #e0e0e0;
}

.footer p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

footer a {
    text-decoration: none;
    color: #666; /* Neutral link color */
    margin: 0 10px; /* Horizontal spacing between links */
}

footer a:hover {
    color: #4CAF50; /* Light green hover color */
}

/* Overlay styling */
#coffee-overlay {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    text-align: center;
    opacity: 1;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    z-index: 9999;
}

/* HIDDEN */
.overlay-hidden {
    opacity: 0;
    visibility: hidden;
}

/* VISIBLE */
.overlay-visible {
    opacity: 1;
    visibility: visible;
}

/* Overlay content */
.overlay-content {
    text-align: center;
}
.coffee-link {
  display: inline-block;
  text-decoration: none;
}

.software .coffee-image {
  width: 100px !important; /* Force the width */
  height: auto !important;
  max-width: none !important; /* Remove the 500px limit */
  margin-bottom: 0 !important; /* Optional: reset the margin if needed */
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.software .coffee-link:hover .coffee-image {
  transform: scale(1.1);
  opacity: 0.8;
}
.youtube-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: #ff0000;
  color: white;
  padding: 6px 12px;
  border-radius: 4px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.2s ease-in-out;
}

.youtube-link:hover {
  background-color: #cc0000;
}

.youtube-icon {
  font-size: 14px;
}

/* Message below image */
.software .coffee-message {
    font-size: 1.2em;
}
#close-overlay {
    background-color: #ff5733;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
}

#close-overlay:hover {
    background-color: #c44227;
}
/* Make the whole page unclickable */
body.no-clicks > *:not(#coffee-overlay) {
    pointer-events: none;
}

/* Allow the overlay itself to be clickable */
#coffee-overlay {
    pointer-events: auto;
}


.fab {
    margin-right: 5px; /* Space between icon and text */
}

.disclaimer {
    margin-top: 15px; /* Space above the disclaimer */
    padding: 15px; /* Inner padding for the disclaimer */
    background-color: #f9f9f9; /* Light gray background */
    border: 1px solid #e0e0e0; /* Subtle border */
    border-radius: 5px; /* Rounded corners */
    font-size: 14px;
    color: #666; /* Neutral disclaimer text color */
    text-align: center; /* Align text to the left */
    line-height: 1.6; /* Improved line spacing */
}

.contact-icons {
    display: flex;
    justify-content: center;
    margin-top: 1em;
}

.contact-icons a {
    margin: 0 10px;
    color: black;
    font-size: 24px;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

.hide-on-mobile {
    display: none; /* Initially hide the element */
}
/* Adjust sidebar width for mobile */
@media (max-width: 1082px) {
	.sidebar ul li .sidebar-link {
		font-size: 12px;
	}
		
/* Adjust sidebar width for mobile */
@media (max-width: 767px) {
/* Navbar */
.navbar {
    padding: 5px 30px;
}
.navbar .logo img {
height: 25px;
}

.nav-links a {
font-size: 12px;
}
}

@media (max-width: 480px) {

/* Navbar */
.navbar {
    padding: 5px 30px;
}
.navbar .logo img {
height: 15px;
}
.navbar {
padding: 5px 10px;

}
.nav-links {
gap: 8px;
}

.nav-links a {
font-size: 9px;
}
	/* Message below image */
.software .coffee-message {
    font-size: 0.8em;
}
#coffee-overlay {

    width: 200px;
}
.software h2 {
    font-size: 16px;
}

.software-info p {
    font-size: 12px;

}
.software-info ul {
    font-size: 10px;

}
}

