* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #eeeeee;
            min-height: 100vh;
        }

        .container {
            max-width: 800px;
            margin: 0 auto;
            padding-bottom:3rem;
        }

        /* Top Bar */
.topbar {
  background: #000;
  height:50px;
  color: white;
  font-size: 14px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 5px 30px;
  z-index: 2;
}

.contact-info {
  display: flex;
  gap: 25px;
  align-items: center;
}
.mail1{
    padding-right: 50px;
}
.social-icons a{
  margin-left: 10px;
  
}
.fa {
  padding: 9px;
  font-size: 30px;
  width: 32px;
  text-align: center;
  text-decoration: none;
}

/* Add a hover effect if you want */
.fa:hover {
  opacity: 0.7;
}

/* Set a specific color for each brand */

/* Facebook */
.fa-facebook {
  background: #3B5998;
  color: white;
}

.fa-linkedin {
  background: #007bb5;
  color: white;
}

.fa-youtube {
  background: #bb0000;
  color: white;
}

.fa-instagram {
  background: #125688;
  color: white;
}

/* Header and Navbar */
header {
    height: 150px;
    padding-bottom: 100px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0 30px;
    padding-top: 20px;
    position: relative;
    background-color: #000000;
}

.logo-img {
  height: 90px;       
  vertical-align: middle;
}

.logo{
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo,
.nav{
  position: relative;
  z-index: 1;
}
.nav-containerblog {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav a {
  margin-left: 20px;
  color: rgb(255, 255, 255);
  font-weight: 500;
  font-size: 18px;
  text-decoration: none;
  transition: color 0.3s;
}

nav a:hover {
  color: #ffcc00;
}

.faqheading{
    padding: 2rem;
    font-size: 2.5rem;
    text-align:center;
}
.faqheading p{
    font-size: 1.5rem;
}
        .faq-container {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .faq-item {
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            overflow: hidden;
            transition: all 0.3s ease;
            animation: slideInLeft 0.6s ease-out;
        }

        .faq-item:nth-child(even) {
            animation: slideInRight 0.6s ease-out;
        }

        .faq-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }

        .faq-question {
            padding: 1.5rem 2rem;
            cursor: pointer;
            position: relative;
            background: linear-gradient(45deg, #f8f9fa, #e9ecef);
            border: none;
            width: 100%;
            text-align: left;
            font-size: 1.1rem;
            font-weight: 600;
            color: #333;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            background: linear-gradient(45deg, #e9ecef, #dee2e6);
        }

        .faq-question::after {
            content: '+';
            position: absolute;
            right: 2rem;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.5rem;
            font-weight: bold;
            color: #667eea;
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-question::after {
            transform: translateY(-50%) rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            background: white;
        }

        .faq-item.active .faq-answer {
            max-height: 300px;
            padding: 0 2rem 1.5rem 2rem;
        }

        .faq-answer p {
            color: #666;
            line-height: 1.6;
            margin-top: 1rem;
        }

        .faq-number {
            position: absolute;
            left: -10px;
            top: -10px;
            background: linear-gradient(45deg, #667eea, #764ba2);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 0.9rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .faq-item {
            position: relative;
        }

        /* Animations */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            
            
            .faq-question {
                padding: 1rem 1.5rem;
                font-size: 1rem;
            }
            
            .faq-question::after {
                right: 1.5rem;
            }
            
            .faq-item.active .faq-answer {
                padding: 0 1.5rem 1rem 1.5rem;
            }
            
            .faq-number {
                width: 30px;
                height: 30px;
                font-size: 0.8rem;
            }
        }
        .footer {
  background-color: #311919;
  color: #fff;
  padding: 60px 30px;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-section {
  flex: 1 1 200px;
  min-width: 220px;
}

.footer-section h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.footer-section p {
  color: #ccc;
  line-height: 1.6;
  font-size: 15px;
}

.signup-btn {
  margin-top: 15px;
  padding: 10px 18px;
  background-color: transparent;
  color: #fff;
  border: 2px solid #ffc107;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
}

.signup-btn:hover {
  background-color: #ffc107;
  color: #000;
}

.work-link {
  color: #ffc107;
  font-weight: bold;
  display: inline-block;
  margin-top: 10px;
  text-decoration: none;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  background-color: #ffc107;
  padding: 6px 12px;
  border-radius: 6px;
  color: #000;
  font-size: 14px;
  font-weight: 500;
}

.legal-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.legal-links li {
  margin-bottom: 8px;
}

.legal-links a {
  color: #bbb;
  text-decoration: none;
  font-size: 15px;
}

.legal-links a:hover {
  color: #fff;
}


/* Sections */
.section {
  padding: 60px 20px;
  text-align: center;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.section.gray {
  background: #f5f5f5;
}

ul {
  list-style: none;
  padding: 0;
}

ul li {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

/* Team Section */
.team-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.member {
  text-align: center;
}

.member img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #ffcc00;
  margin-bottom: 10px;
}

/* Footer */
footer {
  background: #1a1a1a;
  color: white;
  text-align: center;
  padding: 1rem 0;
}
/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    height: auto;
    padding: 20px 15px;
    text-align: center;
  }
  .topbar {
  flex-direction: column;
  align-items: flex-start;
  height: auto;
  padding: 10px 15px;
  gap: 10px;
  text-align: center;
}

.contact-info {
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}


  .logo-img {
    height: 60px;
  }

  .logo {
    max-width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }

  .nav-container {
    flex-direction: column;
    gap: 15px;
  }

  nav a {
    display: block;
    margin: 10px 0;
    font-size: 16px;
  }
}
@media only screen and (max-width: 768px) {
  header, .topbar {
    flex-direction: column;
    text-align: center;
    padding: 10px 15px;
  }

  .logo-img {
    height: 60px !important;
    width: auto;
    margin-bottom: 10px;
  }
  h1, h2, h3 {
    font-size: 1.4em;
  }

  .topbar span {
    display: block;
    margin: 5px 0;
  }
}

