/* General Styles */
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;
}

/* Info Section */
.info-section {
    padding: 50px;
    background-color: #2c3e50;
    color: white;
    font-size: 20px;

}
/* Feature Showcase Section */
.feature-showcase {
    display: flex;
    flex-direction: column; /* Stack the content vertically */
    align-items: center; /* Centers items horizontally */
    justify-content: center; /* Centers content vertically */
    width: 90%;
    height: 300px;
    padding: 50px 5%;
    background: linear-gradient(to right, #ffcc99, #ffffff); /* Peach to white gradient */
    border-radius: 0 0 20px 20px;
    overflow: hidden;
    position: relative;
    gap: 10px; /* Ensures even spacing */
}

/* Text Animation */
.feature-text {
    width: 100%; /* Make the text container take full width */
    opacity: 1;
    animation: bounceInfinite 3s infinite ease-in-out;
    text-align: center; /* Center the text */
}

.feature-text h2 {
    font-size: 2.rem;
    color: #333;
    margin-bottom: 20px; /* Space below the title */
}

.feature-text p {
    font-size: 1.2rem;
    color: #666;
}

/* Image Animation */
.feature-image {
    width: 100%; /* Make the image container take full width */
    display: flex;
    justify-content: center; /* Center the image */
    text-align: center;
    position: relative;
    overflow: hidden; /* Prevents overflow */
}

.feature-image img {
    max-width: 60%; /* Ensure image is responsive */
    height: auto;
    border-radius: 10px;
    opacity: 1;
    transition: transform 2.5s ease-in-out, opacity 1.5s ease-in-out;
}

/* Bounce Text Animation */
@keyframes bounceInfinite {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}



/* 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;
	padding: 20px;
    max-width: 80%;
	border-radius: 10px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	margin-top: 10px;
}

.software {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background: #fff; /* Light background inside each box */
    padding: 30px;
    border: 2px solid #ffcc99; /* Soft peach border */
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    width: 70%;
    margin-top: 10px;
    margin-bottom: 10px;
    gap: 40px;
    height: auto; /* Let it grow naturally */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Add a little hover effect for better feeling */
.software:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}


.software img {
    max-height: 100%; /* Ensure it fits within .software's height */
    width: 60%;       /* Maintain aspect ratio */
    max-width: 300px;  /* Optional limit */
}

.software-info {
    flex: 1;
    text-align: left;
    max-width: 600px;
}

.software-info h2 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 10px;
}


.software-info p {
    font-size: 16px;
    color: #555;
    text-align: justify;
}
.software-link {
    text-decoration: none; /* Remove default underline */
    color: inherit; /* Keep text color the same */
}

.software-link img {
    cursor: pointer; /* Makes the image clickable */
    transition: transform 0.3s ease-in-out;
}

.software-link h2 {
    cursor: pointer; /* Makes the h2 clickable */
    transition: color 0.3s ease-in-out;
}

.software-link:hover img {
    transform: scale(1.05); /* Slight zoom on hover */
}

.software-link:hover h2 {
    color: #16a085; /* Change text color on hover */
}


@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;
}




/* Footer */
.footer {
    padding: 20px;
    background-color: #222;
    color: white;
    font-size: 14px;
    text-align: center;
    width: 100%;
}
.footer a {
    color: #ffcc00;
    text-decoration: none;
    margin: 0 10px;
}

.footer a:hover {
    text-decoration: none;
}
.footer p:last-child {
    font-size: 0.6rem;
}
@media (max-width: 1160px) {
    .feature-list {
        font-size: 14px; /* Adjust font size for smaller screens */
    }
}

@media (max-width: 768px) {
	
/* Navbar */
.navbar {
    padding: 5px 20px;
}
.navbar .logo img {
height: 25px;
}

.nav-links a {
font-size: 11px;
}
    .feature-list {
        font-size: 12px; /* Adjust font size further for even smaller screens */
    }
	/* Info Section */
.info-section {
    padding: 50px;
    font-size: 16px;
	
}
.software img {
    max-width: 100px;  /* Optional limit */
}

.software-info {
    max-width: 300px;
}

.software-info h2 {
    font-size: 12px;
}


.software-info p {
    font-size: 8px;

}
.btn {
        padding: 8px 12px; /* Increase padding for better touch accessibility */
        min-width: 100px; /* Keep a reasonable minimum width */
        height: auto; /* Let the button height adjust naturally */
        font-size: 14px; /* Ensure text is readable */
        line-height: normal; /* Prevent text from being squished */
    }

}
@media (max-width: 480px) {
	
	.navbar .logo img {
    height: 15px;
}
	
	
	.info-section {
    padding: 50px;
    font-size: 10px;

}
	
	.navbar {
    padding: 5px 10px;

}
    .nav-links {
	gap: 8px;
	}
   
    .nav-links a {
    font-size: 9px;
}
	.feature-image img {
    max-width: 20%; /* Ensure image is responsive */
    height: auto;
}

    .feature-showcase {

        padding: 20px;
        height: auto;
    }
	.feature-text h2 {
    font-size: 1.2rem;
    color: #333;
}

.feature-text p {
    font-size: 0.8rem;
    color: #666;
}
.software {
	height: 100px;

}
.software img {
    min-width: 60px;  /* Optional limit */
}

.software-info {
    max-width: 300px;
}

.software-info h2 {
    font-size: 12px;
}


.software-info p {
}

.footer {
    padding: 1px;

}
.footer a {
	font-size: 0.6rem;
    margin:0px;
}
.footer p {
	font-size: 0.6rem;
	margin-top: 1rem;
}
.footer p:last-child {
    font-size: 0.4rem;
}
}