body {
      font-family: 'Inter', sans-serif;
      margin: 0;
      background: #f9f9f9;
      color: #333;
    }

  header {
  background: #1e2a38;
  color: #fff;
  padding: 20px;
  text-align: center;
}

.header-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.logo {
  width: auto;
  height: 80px;
  object-fit: contain;
}

@media (max-width: 600px) {
  .header-content {
    flex-direction: column;
  }

  .logo {
    margin-bottom: 10px;
  }

  .hero h1 {
    font-size: 1.5rem;
  }
}
    /* NAVIGATION */
    nav {
  background: #111;
  color: white;
  padding: 10px 20px;
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-left {
  display: none;
}

.nav-right {
  display: flex;
  gap: 15px;
  margin: 0 auto; /* Center horizontally */
}

.nav-right a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
  color: white;
}

@media (max-width: 768px) {
  .nav-left {
    display: block;
  }

  .nav-right {
    display: none;
    margin: 0;
  }

  .menu-toggle {
    display: block;
  }

  nav {
    justify-content: space-between;
  }
}

    /* Overlay & mobile menu */
    .overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.5);
      z-index: 9;
    }

    .mobile-menu {
      position: fixed;
      top: 0;
      right: 0;
      width: 250px;
      height: 100%;
      background: #111;
      transform: translateX(100%);
      transition: transform 0.3s ease;
      z-index: 10;
      display: flex;
      flex-direction: column;
      padding: 20px;
    }

    .mobile-menu a {
      color: white;
      text-decoration: none;
      padding: 12px 0;
    }

    .close-btn {
      font-size: 24px;
      color: white;
      cursor: pointer;
      align-self: flex-end;
      margin-bottom: 20px;
    }

    /* RESPONSIVE BEHAVIOR */
    @media (max-width: 768px) {
      .nav-right {
        display: none;
      }

      .menu-toggle {
        display: block;
      }
    }

    .hero {
  position: relative;
  background: url('/assets/images/conferencesInc-global-events.jpg') no-repeat center center/cover;
  color: white;
  text-align: center;
  padding: 90px 20px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* 50% black overlay */
  z-index: 0;
}

.hero h1,
.hero input {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 2.1rem;
  margin: 0;
}

.hero input {
  padding: 12px;
  width: 70%;
  max-width: 400px;
  margin-top: 20px;
  border: none;
  border-radius: 5px;
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 1.5rem;
  }

  .hero input {
    width: 90%;
  }
}

    .adsense {
      background: #ddd;
      text-align: center;
      padding: 20px;
      margin: 30px auto;
      width: 90%;
    }
	
	.site-intro {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
  text-align: center;
}

.site-intro h2 {
  font-size: 1.8rem;
  color: #1e2a38;
  margin-bottom: 15px;
}

.site-intro p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 15px;
}


    .categories, .recent-events, .popular-cities {
      max-width: 1200px;
      margin: 0 auto;
      padding: 30px 20px;
    }

    .section-title {
      font-size: 1.4rem;
      margin-bottom: 20px;
    }

    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
    }

    .card {
      background: white;
      border-radius: 8px;
      padding: 20px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      text-align: center;
    }

    .cta {
      background: #1e88e5;
      color: white;
      text-align: center;
      padding: 40px 20px;
    }

    .cta a {
      background: #fff;
      color: #1e88e5;
      padding: 12px 24px;
      text-decoration: none;
      font-weight: bold;
      border-radius: 5px;
    }

    footer {
      background: #222;
      color: #ccc;
      text-align: center;
      padding: 20px;
      margin-top: 30px;
    }

    

      footer {
  background: #222;
  color: #ccc;
  text-align: center;
  padding: 20px;
  margin-top: 30px;
  font-size: 15px;
}

.footer-text {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

@media (max-width: 600px) {
  .footer-text {
    flex-direction: column;
    gap: 4px;
  }
    }
	.footer-links {
  margin-top: 10px;
  font-size: 14px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  margin: 0 8px;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-subscribe {
  margin-top: 20px;
}

.footer-subscribe input[type="email"] {
  padding: 8px;
  border: none;
  border-radius: 4px;
  width: 220px;
  max-width: 100%;
}

.footer-subscribe button {
  padding: 8px 12px;
  margin-left: 5px;
  background: #1e88e5;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.footer-subscribe button:hover {
  background: #1669bb;
}

@media (max-width: 600px) {
.footer-subscribe button {
margin-top: 12px;
}
}

.add-event-section {
  padding: 30px 0;
}

.add-event-form {
  max-width: 700px;
  margin: auto;
  background: #fff;
  padding: 25px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  border-radius: 8px;
}

.form-title {
  text-align: center;
  margin-bottom: 25px;
  font-size: 26px;
  color: #333;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #444;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 15px;
}

.form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.form-row .form-group.half {
  flex: 1 1 48%;
}

.btn-submit {
  background: #007BFF;
  color: #fff;
  padding: 12px 20px;
  border: none;
  width: 100%;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}

.btn-submit:hover {
  background: #0056b3;
}

/* Responsive */
@media screen and (max-width: 600px) {
  .form-row .form-group.half {
    flex: 1 1 100%;
  }
}


.card-link {
  color: #333;
  text-decoration: none;
  line-height: 24px;
}

.view-all-wrapper {
  text-align: right;
  padding: 20px;
  margin-top: -10px;
}

.btn-view-all {
  display: inline-block;
  background-color: #007bff;
  color: #fff;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-view-all:hover {
  background-color: #0056b3;
}

.city-page {

  background-color: #f9f9f9;
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 20px;
}

.country-page {

  background-color: #f9f9f9;
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 20px;
}

.topic-page{
    background-color: #f9f9f9;
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 20px;
}

.type-page {
     background-color: #f9f9f9;
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 20px;
}

.all-events-page {
     background-color: #f9f9f9;
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 20px;
}

.event-detail-section {
    background-color: #f9f9f9;
  max-width: 900px;
  margin: 0 auto;
  padding: 30px 20px;
}

.event-detail-section h1 {
  font-size: 24px;
  color: #333;
  line-height: 31px;
}
}

.pagination {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
  gap: 6px;
}

.pagination a {
  display: inline-block;
  padding: 8px 14px;
  background-color: #f0f0f0;
  color: #333;
  border-radius: 6px;
  text-decoration: none;
  border: 1px solid #ccc;
  transition: background-color 0.3s ease;
}

.pagination a:hover {
  background-color: #469c3d;
  color: #fff;
  border-color: #469c3d;
}

.pagination a.active {
  background-color: #469c3d;
  color: white;
  font-weight: bold;
  pointer-events: none;
}

/* Optional enhancements */
.card-body label {
  font-weight: 600;
  color: #333;
}

input::placeholder,
textarea::placeholder {
  color: #aaa;
  font-size: 0.95rem;
}

.card {
  border-radius: 12px;
}

.btn-primary {
  font-weight: 600;
  font-size: 16px;
}

.event-type-label {
  display: inline-block;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  border-radius: 15px;
  margin-bottom: 8px;
}

/* Color-coding based on event type */
.event-type-label.conference {
  background-color: #007bff; /* Blue */
}

.event-type-label.expo {
  background-color: #28a745; /* Green */
}

.event-type-label.event {
  background-color: #6c757d; /* Grey */
}

.event-type-label.festival {
  background-color: #ffc107; /* Yellow */
  color: #000;
}

.event-type-label.webinar {
  background-color: #17a2b8; /* Teal */
}

.event-list {
  margin-top: 30px;
}

.event-item:hover {
  background: #f9f9f9;
  transition: 0.3s ease;
}

.event-title { font-size: 32px; color: #0b2447; margin-bottom: 20px; }
.event-info ul { list-style: none; padding: 0; }
.event-info ul li { margin-bottom: 10px; font-size: 16px; }
.event-info ul li strong { width: 180px; display: inline-block; color: #111; }
.event-description { margin-top: 10px; background: #f9f9f9; border-radius: 10px; }
.similar-events { margin-top: 50px; }
.similar-events h3 { margin-bottom: 20px; }
.event-list .event-item { margin-bottom: 20px; padding: 15px; border: 1px solid #eee; border-radius: 8px; background: #fff; }
.event-list .event-item h4 { margin-bottom: 5px; font-size: 18px;margin-bottom: 20px; }
.event-list .event-item p { margin: 2px 0; }
.event-list .event-item a {
  color: #333;
  text-decoration: none;
  margin-bottom: 26px;
}
.subscribe-msg {
  margin-bottom: 10px;
  color: green;
  font-weight: 500;
}
