/* 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);
}


body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #121212;
    color: #fff;
}
.container {
    width: 80%;
    max-width: 800px;
    margin: 20px auto;
    background: #1e1e1e;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 15px rgba(255, 102, 0, 0.5);
}
h1, h2 {
    text-align: center;
    color: orange;
}
p{
    text-align: center;
}
.faq {
    margin-top: 20px;
}
.faq-item {
    background: #222;
    border-radius: 8px;
    margin-bottom: 10px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.faq-item:hover {
    background: #333;
}
.question {
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: orange;
}
.answer {
    display: none;
    padding-top: 10px;
    color: #ddd;
}
.icon {
    transition: transform 0.3s ease;
}
.faq-item.active .icon {
    transform: rotate(180deg);
}
.contact {
    text-align: center;
    margin-top: 20px;
}
.contact a {
    display: inline-block;
    background:orange;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}
.contact a:hover {
    background: #e65c00;
}