/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
  }
  
  body {
    color: #fff;
    background: #000;
  }
  
  /* Navbar */
  .navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 15px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10;
  }
  
  .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
  }
  
  .logo span {
    color: #FF6101;
  }
  
  .navbar ul {
    list-style: none;
    display: flex;
    gap: 20px;
  }
  
  .navbar a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .navbar a:hover {
    color: #FF6101;
  }
  
  /* Hero Section */
  .hero {
    height: 100vh;
    background: url("https://assets.entrepreneur.com/content/3x2/2000/1620726465-proxyclick-visitor-management-system-l90zRbWvCoE-unsplash1.jpg?format=pjeg&auto=webp&crop=16:9&width=675&height=380") no-repeat center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .hero .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
  }
  
  .hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 20px;
  }
  
  .hero-content h1 {
    font-size: 3rem;
    margin-bottom: 15px;
  }
  
  .hero-content h1 span {
    color: #FF6101;
  }
  
  .hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
  }
  
  /* Countdown */
 
  
  .countdown div {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    min-width: 70px;
  }
  
  .countdown span {
    display: block;
    font-size: 2rem;
    color: #FF6101;
  }
  .countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
  }
  
  
  /* Buttons */
  .buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
  }
  
  .btn-primary, .btn-secondary {
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
  }
  
  .btn-primary {
    background: #FF6101;
    color: white;
  }
  
  .btn-primary:hover {
    background: #e65600;
  }
  
  .btn-secondary {
    border: 2px solid #FF6101;
    color: #FF6101;
    background: transparent;
  }
  
  .btn-secondary:hover {
    background: #FF6101;
    color: white;
  }
  .register-btn {
    background: #ff6600;
    color: white;
    padding: 12px 25px;
    font-size: 18px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
  }
  .register-btn:hover {
    background: #e65c00;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .hero-content h1 {
      font-size: 2rem;
    }
    .navbar {
      padding: 15px 20px;
    }
    .navbar ul {
      gap: 10px;
    }
  }


  /* css register from  */

  /* Modal */
/* Modal hidden by default */
/* Modal hidden by default */
.modal {
  display: none; 
  position: fixed;
  z-index: 9999;
  inset: 0; /* shorthand for top:0; right:0; bottom:0; left:0 */
  background: rgba(0,0,0,0.6);

  /* Centering */
  justify-content: center;
  align-items: center;
}

/* Modal box */
.modal-content {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  width: 90%;          /* mobile friendly */
  max-width: 400px;    /* limit for big screens */
  box-shadow: 0px 4px 15px rgba(0,0,0,0.3);
  animation: fadeIn 0.3s ease-in-out;
  position: relative;
}

/* Heading */
.modal-content h2 {
  margin-bottom: 20px;
  text-align: center;
  font-size: 22px;
  font-weight: bold;
  color: #222;
}

/* Form styles */
.modal-content form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.modal-content label {
  font-size: 14px;
  font-weight: 500;
  color: #444;
  text-align: left;
}

.modal-content input {
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 16px;
  outline: none;
  transition: border 0.2s ease;
}

.modal-content input:focus {
  border-color: #ff6600;
}

/* Submit button */
.submit-btn {
  background: #ff6600;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.submit-btn:hover {
  background: #e65c00;
}

/* Close button (X) */
.close {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 22px;
  cursor: pointer;
  color: #555;
  transition: color 0.3s ease;
}

.close:hover {
  color: #000;
}

/* Animation */
@keyframes fadeIn {
  from {opacity: 0; transform: translateY(-20px);}
  to {opacity: 1; transform: translateY(0);}
}

  
  /* user counts section  */

.stats-section {
    background: #0d0d0d;
    padding: 60px 20px;
    text-align: center;
  }
  
  .stats-container {
    display: flex;
    justify-content: space-around;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
  }
  
  .stat-box {
    margin: 20px;
  }
  
  .stat-box h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #00d4ff;
  }
  
  .stat-box p {
    font-size: 1rem;
    color: #fff;
  }
  .stats .number {
    color: #FF6600;   /* orange number */
    font-size: 2rem;
    font-weight: bold;
  }
  /* event section  */
/* Event Section */
.venue-link {
  display: inline-block;
  padding: 5px 10px;
  /* background: rgb(255,97,1); */
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: 0.3s;
}

.venue-link:hover {
  background: #e05200;
}

.event-next {
    padding: 60px 20px;
    background: #fff;
  }
  
  .event-next .container {
    max-width: 1200px;
    margin: auto;
  }
  
  .section-title {
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
  }
  
  .section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #555;
    margin-bottom: 50px;
  }
  
  .event-content {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
  }
  
  .event-image {
    flex: 1;
  }
  
  .event-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  }
  
  .event-info {
    flex: 1;
  }
  
  .event-info h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #FF6600;
  }
  
  .event-info ul {
    list-style: none;
    padding: 0;
  }
  
  .event-info li {
    color: #000;
    font-size: 18px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
  }
  
  .event-info .icon {
    font-size: 22px;
    margin-right: 10px;
    color: #FF6600;
  }
  
  /* Agenda Section */
  .agenda {
    text-align: center;
  }
  
  .agenda-box {
    margin-top: 30px;
    padding: 30px;
    border: 2px solid #FF6600;
    border-radius: 16px;
    display: inline-block;
    background: #fff5ef;
  }
  
  .agenda .day h3 {
    font-size: 24px;
    margin-bottom: 15px;
  }
  
  .agenda .day p {
    font-size: 18px;
    margin: 5px 0;
    color: #333;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .event-content {
      flex-direction: column;
      text-align: center;
    }
  
    .event-info {
      margin-top: 20px;
    }
  }
  /* event specker section  */
.speakers-section {
    background: #111; 
    padding: 80px 20px;
    text-align: center;
    color: #fff;
    font-family: 'Arial', sans-serif;
  }
  
  .section-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .section-title span {
    color: #00d26a; /* Green highlight */
  }
  
  .section-subtitle {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 50px;
  }
  
  /* Grid */
  .speakers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
  }
  
  /* Cards */
  .speaker-card {
    background: linear-gradient(135deg, #ff4e50, #1fd1f9);
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .speaker-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  }
  
  .speaker-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 3px solid #fff;
  }
  
  .speaker-card h3 {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 8px;
  }
  
  .speaker-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #00e6e6;
    margin-bottom: 15px;
  }
  
  .speaker-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #f2f2f2;
  }
  /* booking ticket  */
/* Register Now Section */
.register-now {
    background: #000;
    padding: 80px 20px;
  }
  
  .register-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
  }
  
  /* Left Form */
  .register-form {
    flex: 1;
    background: #111;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
    color: #fff;
  }
  
  .register-form h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #22d3ee;
  }
  
  .register-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .register-form input,
  .register-form select {
    padding: 14px;
    border-radius: 10px;
    border: none;
    outline: none;
    font-size: 1rem;
    background: #1a1a1a;
    color: #fff;
  }
  
  .register-form button {
    background: #22d3ee;
    color: #000;
    padding: 14px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: 0.3s ease;
  }
  
  .register-form button:hover {
    background: #0ea5e9;
    transform: translateY(-3px);
  }
  
  /* Right Content */
  .register-content {
    flex: 1;
    color: #fff;
  }
  
  .register-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #22d3ee;
  }
  
  .register-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #ccc;
  }
  
  .register-content ul {
    list-style: none;
    padding: 0;
  }
  
  .register-content ul li {
    font-size: 1.1rem;
    margin-bottom: 12px;
    position: relative;
    padding-left: 28px;
  }
  
  .register-content ul li::before {
    content: "✔";
    color: #22d3ee;
    position: absolute;
    left: 0;
    font-weight: bold;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .register-container {
      flex-direction: column;
    }
  }
  /* brand promotion  */


  
  .logo-section {
    display: grid;
    grid-template-columns: 1fr; /* single column on mobile */
    gap: 30px;
    padding: 50px 20px;
    background: #f9f9f9;
    text-align: center;
  }
  
  .logo-section h2 {
    grid-column: 1 / -1; /* span full width */
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
  }
  
  .logo-box {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .logo-box img {
    max-width: 180px;
    max-height: 120px;
    object-fit: contain;
  }
  
  .logo-box:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 18px rgba(0,0,0,0.2);
  }
  
  /* Responsive for tablets and desktops */
  @media (min-width: 768px) {
    .logo-section {
      grid-template-columns: repeat(3, 1fr);
    }
  
    .logo-section h2 {
      grid-column: 1 / 4; /* span across all 3 columns */
    }
  }
  /* foote */
  .footer {
    background: #111;
    color: #bbb;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
  }
  
  .footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: auto;
  }
  
  .footer-section h2,
  .footer-section h3 {
    color: rgb(255,97,1); /* 🔥 Brand Orange */
    margin-bottom: 15px;
  }
  
  .footer-section ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-section ul li {
    margin-bottom: 10px;
  }
  
  .footer-section a {
    text-decoration: none;
    color: #bbb;
    transition: 0.3s;
  }
  
  .footer-section a:hover {
    color: rgb(255,97,1);
  }
  
  .footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #888;
  }  
  /* market about  */
  .about-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: 80px 10%;
    background: linear-gradient(135deg, #f8f8f8, #ffffff); /* Pure section background */
  }
  
  .about-content {
    flex: 1;
    max-width: 600px;
  }
  
  .about-content h2 {
    font-size: 40px;
    font-weight: bold;
    color: #ff6101;
    margin-bottom: 20px;
  }
  
  .about-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #444;
    line-height: 1.6;
  }
  
  .about-content ul {
    list-style: none;
    padding: 0;
  }
  
  .about-content ul li {
    font-size: 18px;
    margin-bottom: 12px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .about-img {
    flex: 1;
    display: flex;
    justify-content: center;
  }
  
  .about-img img {
    width: 100%;
    max-width: 500px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  }
  
  /* Responsive */
  @media (max-width: 900px) {
    .about-section {
      flex-direction: column-reverse;
      text-align: center;
    }
    .about-img img {
      max-width: 100%;
    }
  }
  /* Social icons */
.social-icons {
  margin-top: 30px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.social-icons a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: #444;
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-icons a i {
  font-size: 18px;
  color: #ff6101; /* orange icons */
}

.social-icons a:hover {
  color: #ff6101;
}

  
  
  
  