
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #d6d1c9;
    color: #333;
    transition: background-color 0.3s ease-in-out;
}
.logo img {
     height: 50px; /* Adjust height as needed */
     width: auto; /* Maintain aspect ratio */
     object-fit: contain; /* Ensure the image scales properly */
     display: block; /* Remove any unwanted extra space */
     border-radius: 50%;
     animation: rotateLogo 5s linear infinite;
}
header {
    padding: 1;
    position: sticky;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    top: 0;
    z-index: 1000;
    transition: background-color 0.3s ease;
    
}
.logo {
    color: white;
    font-size: 24px;
    text-align: center;
}
nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
nav ul li {
    margin: 0 15px;
    position: relative;
}
nav ul li a {
    text-decoration: none;
    background-color: white;
    color: black;
    padding: 12px 18px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    display: inline-block;
    position: relative;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 4px 10px rgba(56, 129, 22, 0.3);
    overflow: hidden;
}
nav ul li a:hover,
nav ul li .active {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  
}
nav ul li a::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    bottom: 0;
    left: 0;
    background-color: white;
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: right;
}
nav ul li a:hover::before,
nav ul li .active::before {
    transform: scaleX(1);
    transform-origin: left;
}
main {
    padding: 20px;
    max-width: 800px;
    margin: 20px auto;
    background-color: #d6d1c9;
    border-radius: 8px;
    box-shadow:  2PX 2PX 6PX 2PX;
}
.intro h1 {
    font-size: 28px;
    margin-bottom: 10px;
}
.intro p {
    font-size: 18px;
    margin-bottom: 20px;
}
.feedback-form h2 {
    font-size: 24px;
    margin-bottom: 15px;
}
.feedback-form form {
    display: grid;
    gap: 15px;
    
}

.feedback-form label {
    font-size: 16px;
}
.feedback-form input,
.feedback-form select,
.feedback-form textarea {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 16px;
    width: 100%;
    box-sizing: border-box;
    transition: border-color 0.3s ease-in-out;
}
.feedback-form input:focus,
.feedback-form select:focus,
.feedback-form textarea:focus {
    border-color: #0073e6;
}
.feedback-form button {
    padding: 10px 20px;
    border: none;
    background-color: #907956;
    color: white;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}
.feedback-form button:hover {
    transform: scale(1.05);
    background-color: #49384a;
}
.support h2 {
    font-size: 24px;
    margin-top: 30px;
}
.faqs ul {
    list-style: none;
    padding: 0;
}
.faqs li {
    font-size: 16px;
    margin-bottom: 10px;
}
.contact-info p {
    font-size: 16px;
    margin: 5px 0;
}
footer{
    position: relative;
    
    padding: 0;
    margin: 0;
    border-top: 1px;
    box-shadow: inset 2px 2px 0 0 grey;
    }
    .fnav{
    display: flex;
    justify-content:center;
    gap: 30px;
    }
    .fitem{
        text-decoration: none;
        color: black;
        font-size: 16px;
        display: inline-block;
        position: relative;
        transition: all 0.3s ease-in-out;
        box-shadow: 0px 4px 10px rgba(56, 129, 22, 0.3);
        overflow: hidden;
    }
    .fcopy{
    display: flex;
    justify-content: center;
    position: relative;
    top: 10px;
    }
.coffee-support {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px auto;
  padding: 20px;
}

.coffee-support a {
  background: linear-gradient(135deg, #ffb347, #ffcc33);
  color: #fff;
  padding: 14px 24px;
  border-radius: 30px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: inline-block;
}

.coffee-support a:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}
/* Media Queries for Mobile Devices */
@media (max-width: 768px) {
body {
font-size: 12px;
line-height: 1.4;
margin: 0;
padding: 0;
background-color: #d6d1c9 !; 
}

/* Header */
header {
background-color:cornsilk;
padding: 5px 0;
position: fixed;
top: 0;
width: 100%;
z-index: 1000;
overflow: auto;
}

nav ul {
display: flex;
justify-content: space-around;
padding: 0;
margin: 0;
list-style: none;
position: relative;
bottom: 10px;
}

nav ul li {
display: inline;
}

nav ul li a {
color: black;
padding: 8px 10px;
text-decoration: none;
font-size: 12px;
position:relative;
top:10px;
}

nav ul li a.active {

border-radius: 3px;
}

/* Main Section */
main {
padding-top: 40px;
}

.intro h1 {
font-size: 16px;
text-align: center;
margin-bottom: 5px;
}

.intro p {
font-size: 12px;
text-align: center;
margin: 0 10px;
}

/* Feedback Form */
.feedback-form {
padding: 5px;
border: black 2px solid;
background-color: #f0ebe1f3;
border-radius: 20px;
box-shadow:  2PX 2PX 6PX 2PX;
}



.feedback-form form {
display: flex;
flex-direction: column;
gap: 5px;
}

.feedback-form input,
.feedback-form select,
.feedback-form textarea {
width: 100%;
padding: 5px;
font-size: 12px;
border-radius: 3px;
border: 1px solid #ccc;
}

.feedback-form button {
background-color: #907956;
box-shadow:  2PX 2PX 6PX 2PX ;
color: white;
padding: 6px;
font-size: 12px;
border: none;
border-radius: 3px;
cursor: pointer;
}

.feedback-form button:hover {
background-color: #49384a;
}

/* Support Section */
.support {
padding: 5px;
}

.support h2 {
font-size: 14px;
text-align: center;
}

.faqs ul {
padding-left: 10px;
font-size: 12px;
}

.contact-info {
text-align: center;
font-size: 12px;
}
}
