 /* General Styling */
 body {
     font-family: 'Arial', sans-serif;
     margin: 0;
     padding: 0;
     background-color: #0a0a0a;
     color: #fff;
 }


 /*fixed*/
 nav {
     background-color: #0d0d0d;
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 20px;
     padding-left: 30px;
     border-bottom: 1px solid #333;
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     z-index: 1000;
 }

 nav .logo {
     font-size: 24px;
     font-weight: bold;
 }

 nav .menu a {
     color: white;
     text-decoration: none;
     margin: 0 15px;
     font-size: 16px;
 }

 nav a:hover {
     color: #ff6600;
 }

 .menu {
     margin-left: 400px;
     margin-right: 53px;
 }

 /*end*/

 /* FAQ Section */
 #faqs {
     width: 80%;
     margin: 20px auto;
     background: #111;
     padding: 20px;
     border-radius: 10px;
     box-shadow: 0 0 10px rgba(255, 103, 0, 0.5);
     margin-top: 140px;
 }

 details {
     background: #1a1a1a;
     padding: 15px;
     margin: 10px 0;
     border: 2px solid #ff6700;
     border-radius: 6px;
     cursor: pointer;
     transition: 0.3s ease-in-out;
 }

 details:hover {
     background: #222;
     transform: scale(1.02);
 }

 summary {
     font-weight: bold;
     color: #ff6700;
     font-size: 18px;
     outline: none;
     cursor: pointer;
 }

 details p {
     padding: 10px 0 0;
     color: #ccc;
     font-size: 16px;
 }

 /* Blog Section */
 #blogs {
     width: 80%;
     margin: 30px auto;
     padding: 20px;
     background: #111;
     border-radius: 10px;
     box-shadow: 0 0 10px rgba(255, 103, 0, 0.5);
 }

 .blog-card {
     background: #1a1a1a;
     padding: 15px;
     margin: 15px 0;
     border-left: 4px solid #ff6700;
     border-radius: 8px;
     box-shadow: 0 0 8px rgba(255, 103, 0, 0.5);
     transition: transform 0.3s ease-in-out, background 0.3s ease-in-out;
 }

 .blog-card:hover {
     background: #222;
     transform: translateY(-5px);
 }

 .blog-card h3 {
     margin: 0;
     padding-bottom: 10px;
     color: #ff6700;
     font-size: 20px;
 }

 .blog-card p {
     color: #ddd;
     margin-top: 5px;
     font-size: 16px;
 }
 

 .animated-line {
     position: absolute;
     bottom: 0;
     left: 0;
     height: 1px;
     width: 100%;
     overflow: hidden;
 }

 .animated-line::before {
     content: "";
     position: absolute;
     bottom: 0;
     left: 0;
     width: 100%;
     height: 1px;
     background: linear-gradient(to left, gold 50%, transparent 0%);
     background-size: 200% 100%;
     animation: moveLine 20s linear infinite;
 }
 
@keyframes moveLine {
  0% {
    background-position: -100% 0%;
  }
  100% {
    background-position: 200% 0%;
  }
}

 /* Responsive Design */

 @media (max-width: 768px) {
    nav {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px 20px;
    }

    .menu {
        flex-direction: column;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        display: flex;
    }

    .menu a {
        padding: 10px 0;
        font-size: 16px;
        width: 100%;
        border-top: 1px solid #333;
    }
    #faqs
    {
        margin-top: 450px;
    }
}
