.features-section {
  display: flex;
  align-items: center;
  padding: 50px;
  background-color: #000;
  color: #fff;
}

.features-text {
  flex-basis: 50%;
  padding-right: 25px;
  box-sizing: border-box;
}

.features-image {
  flex-basis: 50%;
  padding-left: 25px;
  box-sizing: border-box;
}

.features-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
}

.features-text h1 {
  font-family: "El Messiri", sans-serif;
  font-size: 2.5rem;
  color: #f3d8a3;
  margin-bottom: 20px;
}

.features-text p {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.features-text h2 {
  font-family: "El Messiri", sans-serif;
  font-size: 1.5rem;
  color: #f3d8a3;
  margin-bottom: 10px;
}

.features-text .icon {
  color: #e53935;
  margin-right: 10px;
}

.features-text ul {
  list-style: none;
  padding-left: 20px;
  margin-bottom: 20px;
}

.features-text ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  font-family: "Poppins", sans-serif;
}

.features-text ul li::before {
  content: "\2022";
  color: #f3d8a3;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
  position: absolute;
  left: 0;
}

.whatsapp-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  text-decoration: none;
  font-weight: bold;
  z-index: 1000;
  font-family: "Poppins", sans-serif;
}

.whatsapp-cta img {
  width: 24px;
  margin-right: 10px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "El Messiri", Sans-serif;
}

body {
  background: #000;
  min-height: 100vh;
  color: #fff;
}

.navbar {
  display: flex;
  align-items: center;
  padding: 15px 50px;
  background: #000;
  position: relative;
}

.logo {
  flex: 1;
}

.logo img {
  height: 60px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
}

.nav-links a {
  color: #ffd700;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
}

.auth-buttons {
  display: flex;
  gap: 10px;
  flex: 1;
  justify-content: flex-end;
}

.login-btn,
.signup-btn {
  padding: 12px 30px;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  font-size: 14px;
}

.login-btn {
  background: #ffd700;
  color: #000;
}

.signup-btn {
  background: #ffa500;
  color: #fff;
}

.hero {
  width: 100%;
}

.hero-img {
  width: 100%;
  height: auto;
  display: block;
}

.about {
  background: #1a1a1a;
  padding: 50px;
}

.about-container {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.about-image {
  flex: 0 0 45%;
}

.about-image img {
  width: 100%;
  border-radius: 15px;
}

.about-content {
  flex: 1;
  color: #fff;
}

.about-content h2 {
  font-size: 2.2rem;
  color: #ffd700;
  margin-bottom: 20px;
  line-height: 1.1;
  font-weight: 700;
}

.about-content p {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 25px;
  text-align: justify;
}

.highlight {
  color: #ffd700;
  font-weight: 600;
}

.cta-text {
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 8px;
}

.tagline {
  font-weight: 700;
  font-size: 0.95rem;
  margin-top: 0;
}

.key-features-section {
  background-color: #1a1a1a;
  padding: 50px;
  text-align: center;
}

.section-subtitle {
  color: #f3d8a3;
  font-weight: bold;
  margin-bottom: 10px;
}

.section-title {
  color: #f3d8a3;
  font-family: "El Messiri", sans-serif;
  font-size: 2rem;
  margin-bottom: 50px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background-color: #111;
  padding: 30px;
  border-radius: 10px;
  border: 1px solid #333;
}

.feature-card img {
  height: 80px;
  margin-bottom: 20px;
}

.feature-card h3 {
  color: #fff;
  font-family: "El Messiri", sans-serif;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.feature-card hr {
  border: 1px solid #333;
  margin-bottom: 15px;
}

.feature-card ul {
  list-style: none;
  padding: 0;
  text-align: left;
}

.feature-card ul li {
  color: #fff;
  font-family: "Poppins", sans-serif;
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.feature-card ul li::before {
  content: "✓";
  color: #e53935;
  position: absolute;
  left: 0;
}

.registration-guide-section {
  display: flex;
  background-color: #000;
  color: #fff;
  padding: 50px;
}

.left-panel {
  flex: 1;
  padding-right: 50px;
}

.sticky-content {
  position: -webkit-sticky;
  position: sticky;
  top: 50px;
}

.left-panel h2 {
  font-family: "El Messiri", sans-serif;
  font-size: 2.5rem;
  color: #f3d8a3;
  margin-bottom: 20px;
}

.left-panel p {
  font-family: "Poppins", sans-serif;
  margin-bottom: 30px;
}

.about-us-btn {
  background-color: #f3d8a3;
  color: #000;
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
}

.about-us-btn .arrow {
  margin-left: 10px;
}

.right-panel {
  flex: 1;
}

.step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
}

.step-icon {
  margin-right: 20px;
}

.step-icon img {
  width: 50px;
}

.step-content h3 {
  font-family: "El Messiri", sans-serif;
  font-size: 1.5rem;
  color: #f3d8a3;
  margin-bottom: 10px;
}

.step-content p,
.step-content ul {
  font-family: "Poppins", sans-serif;
  margin-bottom: 15px;
}

.step-content ul {
  padding-left: 20px;
}

.step-content ul li {
  margin-bottom: 5px;
}

.advantages-section {
  background-color: #1a1a1a;
  color: #fff;
  padding: 50px;
  text-align: center;
}

.advantages-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.advantages-content article {
  margin-bottom: 40px;
}

.advantages-content h3 {
  font-family: "El Messiri", sans-serif;
  font-size: 1.8rem;
  color: #f3d8a3;
  margin-bottom: 15px;
}

.advantages-content p {
  font-family: "Poppins", sans-serif;
  line-height: 1.8;
}

.general-steps-section {
  background-color: #000;
  color: #fff;
  padding: 50px;
  text-align: center;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.step-card {
  background-color: #111;
  padding: 30px;
  border-radius: 10px;
  border: 1px solid #333;
  text-align: left;
  position: relative;
  border-top: 5px solid #f3d8a3;
}

.step-number {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 3rem;
  font-weight: bold;
  color: rgba(243, 216, 163, 0.2);
}

.step-card h3 {
  font-family: "El Messiri", sans-serif;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 15px;
}

.step-card hr {
  border: 1px solid #333;
  margin-bottom: 15px;
}

.step-card ul {
  list-style: none;
  padding: 0;
}

.step-card ul li {
  font-family: "Poppins", sans-serif;
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.step-card ul li::before {
  content: "✓";
  color: #e53935;
  position: absolute;
  left: 0;
}

.cta-card {
  background-color: #f3d8a3;
  color: #000;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.cta-card h3 {
  color: #000;
}

.online-id-btn {
  background-color: #fff;
  color: #000;
  padding: 10px 20px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  margin-top: 20px;
}

.online-id-btn .arrow {
  margin-left: 10px;
}

.download-app-section {
  background-color: #1a1a1a;
  color: #fff;
  padding: 50px;
  text-align: center;
}

.download-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.download-content p {
  font-family: "Poppins", sans-serif;
  line-height: 1.8;
  margin-bottom: 20px;
}

.ultimate-experience-section {
  background-color: #000;
  color: #fff;
  padding: 50px;
  text-align: center;
}

.ultimate-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.ultimate-content p {
  font-family: "Poppins", sans-serif;
  line-height: 1.8;
  margin-bottom: 20px;
}

.ultimate-content ul {
  list-style: none;
  padding: 0;
}

.ultimate-content ul li {
  font-family: "Poppins", sans-serif;
  line-height: 1.8;
  margin-bottom: 15px;
}

.ultimate-content ul li strong {
  color: #f3d8a3;
}

.why-choose-us-section {
  background-color: #111;
  color: #fff;
  padding: 50px;
  text-align: center;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto 30px;
}

.choice-card {
  background-color: #000;
  padding: 30px;
  border-radius: 10px;
  border: 1px solid #f3d8a3;
  text-align: center;
}

.choice-card img {
  height: 80px;
  margin-bottom: 20px;
}

.choice-card h3 {
  font-family: "El Messiri", sans-serif;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 15px;
}

.choice-card hr {
  border: 1px solid #f3d8a3;
  margin-bottom: 15px;
}

.choice-card p {
  font-family: "Poppins", sans-serif;
}

.footer-text {
  max-width: 600px;
  margin: 0 auto 30px;
  font-family: "Poppins", sans-serif;
}

.get-id-btn {
  background-color: #f3d8a3;
  color: #000;
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
}

.get-id-btn .arrow {
  margin-left: 10px;
}

.testimonial-section {
  background-color: #1a1a1a;
  color: #fff;
  padding: 50px;
  text-align: center;
}

.testimonial-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 50px;
}

.testimonial-card {
  background-color: #fff;
  color: #000;
  padding: 30px;
  border-radius: 10px;
  box-sizing: border-box;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.card-header h4 {
  font-family: "El Messiri", sans-serif;
  font-size: 1.5rem;
  margin: 0;
}

.card-header img {
  width: 30px;
}

.testimonial-card p {
  font-family: "Poppins", sans-serif;
  text-align: left;
  line-height: 1.6;
}

/* Payment Section */
.payment-section {
  padding: 80px 20px;
  background: #000;
  text-align: center;
}

.payment-content {
  max-width: 1000px;
  margin: 0 auto 60px;
  text-align: center;
}

.payment-content p {
  color: #ccc;
  line-height: 1.8;
  margin-bottom: 25px;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
}

.payment-methods {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.payment-method {
  background: #fff;
  padding: 40px 30px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
}

.payment-method img {
  max-width: 100%;
  max-height: 100px;
  object-fit: cover;
}

/* FAQ Section */
.faq-section {
  padding: 80px 20px;
  background: #000;
}

.faq-container {
  display: flex;
  max-width: 1400px;
  margin: 0 auto;
  gap: 60px;
  align-items: flex-start;
}

.faq-left {
  flex: 1;
  max-width: 500px;
}

.faq-left .section-title {
  text-align: left;
  margin-bottom: 20px;
  font-size: 2.5rem;
}

.faq-description {
  color: #ccc;
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  margin-bottom: 40px;
}

.faq-cta {
  background: #1a1a1a;
  padding: 30px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.faq-icon img {
  width: 50px;
  height: 50px;
  filter: invert(1);
}

.faq-cta-content h3 {
  color: #fff;
  font-family: "El Messiri", sans-serif;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.get-online-id-btn {
  background: #f3d8a3;
  color: #000;
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  text-decoration: none;
  display: inline-block;
}

.get-online-id-btn .arrow {
  margin-left: 10px;
}

.faq-right {
  flex: 1;
}

.faq-item {
  border-bottom: 1px solid #333;
  margin-bottom: 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  cursor: pointer;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}

.faq-toggle {
  font-size: 1.5rem;
  color: #f3d8a3;
  font-weight: bold;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0;
  color: #ccc;
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.active {
  max-height: 200px;
  padding: 0 0 25px 0;
}

.faq-answer .highlight {
  color: #f3d8a3;
  font-weight: 600;
}

/* Disclaimer */
.disclaimer {
  background: #b8b894;
  padding: 15px 20px;
  text-align: center;
  color: #000;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.warning-icon {
  font-size: 16px;
}

/* Footer */
.footer {
  background: #1a1a1a;
  color: #fff;
  padding: 50px 20px 0;
}

.footer-container {
  display: flex;
  max-width: 1400px;
  margin: 0 auto;
  gap: 60px;
}

.footer-left {
  flex: 1;
  max-width: 400px;
}

.footer-logo {
  height: 60px;
  margin-bottom: 20px;
}

.footer-left p {
  color: #ccc;
  line-height: 1.6;
  font-family: "Poppins", sans-serif;
}

.footer-links {
  display: flex;
  gap: 80px;
  flex: 1;
}

.footer-column h3 {
  color: #f3d8a3;
  font-family: "El Messiri", sans-serif;
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  color: #ccc;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: #f3d8a3;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icon {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 18px;
  transition: background 0.3s;
}

.social-icon:hover {
  background: #f3d8a3;
}

.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 40px;
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  color: #ccc;
  font-family: "Poppins", sans-serif;
  margin: 0;
}

/* Tablet Responsive */
@media (max-width: 992px) {
  .navbar {
    padding: 15px 30px;
  }

  .nav-links {
    gap: 20px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .about,
  .features-section,
  .key-features-section,
  .registration-guide-section,
  .advantages-section,
  .general-steps-section,
  .download-app-section,
  .ultimate-experience-section,
  .why-choose-us-section,
  .testimonial-section,
  .payment-section,
  .blogs-section,
  .faq-section {
    padding: 40px 30px;
  }

  .features-text h1 {
    font-size: 2.2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .footer-links {
    gap: 50px;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    padding: 15px 20px;
  }

  .nav-links {
    position: static;
    transform: none;
    margin-top: 15px;
    flex-wrap: wrap;
    gap: 15px;
  }

  .auth-buttons {
    margin-top: 15px;
    justify-content: center;
  }

  .about {
    padding: 30px 20px;
  }

  .about-container {
    flex-direction: column;
    gap: 30px;
  }

  .about-content h2 {
    font-size: 1.8rem;
  }

  .features-section {
    flex-direction: column;
    padding: 30px 20px;
  }

  .features-text {
    padding-right: 0;
    margin-bottom: 30px;
  }

  .features-image {
    padding-left: 0;
  }

  .features-text h1 {
    font-size: 2rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-cards {
    grid-template-columns: 1fr;
  }

  .payment-methods {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }

  .payment-method {
    height: 60px;
    padding: 15px;
  }

  .blog-card {
    min-width: 100%;
  }

  .slider-arrow {
    display: none;
  }

  .faq-container {
    flex-direction: column;
    gap: 40px;
  }

  .faq-left {
    max-width: 100%;
  }

  .key-features-section {
    padding: 30px 20px;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .registration-guide-section {
    flex-direction: column;
    padding: 30px 20px;
  }

  .left-panel {
    padding-right: 0;
    margin-bottom: 30px;
  }

  .sticky-content {
    position: static;
  }

  .advantages-section,
  .general-steps-section,
  .download-app-section,
  .ultimate-experience-section,
  .why-choose-us-section,
  .testimonial-section,
  .payment-section,
  .blogs-section,
  .faq-section {
    padding: 30px 20px;
  }

  .footer-container {
    flex-direction: column;
    gap: 40px;
  }

  .footer-links {
    flex-direction: column;
    gap: 30px;
  }

  .disclaimer {
    flex-direction: column;
    text-align: center;
    font-size: 12px;
  }

  .whatsapp-cta {
    bottom: 10px;
    right: 10px;
    padding: 8px 15px;
    font-size: 12px;
  }
}

/* Blogs Section */
.blogs-section {
  padding: 80px 20px;
  background: #000;
  text-align: center;
  position: relative;
}

.blog-slider {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
}

.blog-cards {
  display: flex;
  gap: 30px;
  transition: transform 0.5s ease;
}

.blog-card {
  min-width: calc(33.333% - 20px);
  background: #1a1a1a;
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid #333;
}

.blog-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-content {
  padding: 25px;
  text-align: left;
}

.blog-tag {
  background: #00ff88;
  color: #000;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 15px;
}

.blog-card h3 {
  color: #fff;
  font-family: "El Messiri", sans-serif;
  font-size: 1.3rem;
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-meta {
  color: #888;
  font-size: 14px;
  margin-bottom: 15px;
  font-family: "Poppins", sans-serif;
}

.blog-excerpt {
  color: #ccc;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  font-family: "Poppins", sans-serif;
}

.read-more-btn {
  background: transparent;
  color: #fff;
  border: 1px solid #333;
  padding: 8px 16px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  text-decoration: none;
  display: inline-block;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.prev-arrow {
  left: -25px;
}

.next-arrow {
  right: -25px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #333;
  cursor: pointer;
  transition: background 0.3s;
}

.dot.active {
  background: #f3d8a3;
}
