@charset "utf-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&display=swap');



* {
  box-sizing: border-box;
}

body { margin:0px; padding:0px;   font-family: 'Roboto', sans-serif; background: #fff  }
img, p { border:none; outline:none; max-width:100%; vertical-align:top; background-size:100%; }
article, aside, details, figcaption, figure, footer, header, hgroup, nav, section, summary { display: block; }
.clrfix{ clear:both}



/* Container styling */
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding:15px 0 25px 0;
   transition: all 0.3s ease; max-width: 1300px;  margin: 0 auto; width: 100%;
}

/* Logo styling */
.logo img {
    max-width:100%;
    height: auto;
    transition: transform 0.3s ease;
}



/* Event details (date next to logo) */
.event-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

		padding:10px 0 0 0
}

.event-date {
    display: flex;
    align-items: center;
    font-size: 24px;
    color: #0E3D58;
    font-weight: bold;
}


 .date-container strong{
  font-size: 24px; 
   
}


    .date-container {
      display: flex;
      gap: 10px;
      font-family: Arial, sans-serif; align-items: center;
    }

    .date-box {
      width: 80px;
      text-align: center;
      border-radius: 5px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .date-top {
      background-color: #871F7E; /* green */
      color: white;
      padding: 8px 0;
      font-size: 28px;
      font-weight: bold;
    }

    .date-bottom {
      background-color: #2C89C7; /* orange */
      color: white;
      padding: 5px 0;
      font-size: 13px;
      font-weight: bold;
    }

.event-location {
    font-size: 16px;
    color: #0E3D58; padding: 5px 0 0 0; line-height: 28px
}

/* Button styling */
.action-buttons {
    display: flex;
    gap: 10px;
}

.btn {
    padding: 15px 25px;
    text-decoration: none;
    color: #fff;
    background-color: #186DA6;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease; font-size: 16px
}

.book-stall {
 background:#871F7E;
}

.visit {
  background:#871F7E;
}

.btn:hover {
    transform: scale(1.05);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .action-buttons {
        flex-direction: column;
        width: 90%; margin: 0 auto!important; gap:0px; 
    }

    .btn {
        width: 85%;
        margin-bottom: 10px;
    }
	
	.event-details {

    width:90%; text-align: center; margin-bottom: 10px
}
	
.event-location {
    font-size: 14px;
    text-align: left;
}
	
	
	
	
}






 /* Exhibitor Profile */



  .exhibitor-section {
    padding: 60px 20px;
    background-color: #f5f5f5;
    font-family: Arial, sans-serif;
  }

  .exhibitor-title {
    text-align: center;
    font-size: 28px;
    color: #222;
    font-weight: bold;
    margin-bottom: 40px;
    letter-spacing: 0.5px;
  }

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

  .exhibitor-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
  }

  .exhibitor-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

  .exhibitor-card span {
    display: block;
    padding: 14px 10px;
    font-size: 15px;
    color: #333;
    font-weight: 500;
  }

  .exhibitor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  }

  .exhibitor-card:hover img {
    transform: scale(1.05);
  }

  @media screen and (max-width: 480px) {
    .exhibitor-card img {
      height: 140px;
    }

    .exhibitor-title {
      font-size: 22px;
    }
  }



  /* middle */



  .middle-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  padding:60px 0px;
max-width: 1300px;
  border-radius: 12px;
  margin: 0 auto;

  transition: all 0.4s ease-in-out;
}

.middle-inner p,
.middle-inner h1 {
  transition: all 0.3s ease-in-out;
}

.middle-inner img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.middle-inner img:hover {
  transform: scale(1.03);
}

.middle-inner h1 {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
  width: 100%;
}

.middle-inner p {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 10px;
  width: 100%;
}

.middle-inner .image-block {
  flex: 1 1 45%;
  padding-right: 30px;
  box-sizing: border-box;
}

.middle-inner .text-block {
  flex: 1 1 50%;
}

@media (max-width: 768px) {
  .middle-inner {
    flex-direction: column;
    padding: 20px;
  }

  .middle-inner .image-block,
  .middle-inner .text-block {
    flex: 1 1 100%;
    padding-right: 0;
  }

  .middle-inner h1 {
    font-size: 22px;
  }

  .middle-inner p {
    font-size: 15px;
  }
}




/* Visitor */

#middle-outer3 {
  padding: 60px 20px;
 background: linear-gradient(90deg, #3C60C0 0.14%, #910683 101.15%);
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
}

.section-header {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 30px;
  position: relative;
}

.section-header::after {
  content: "";
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #0ea5e9, #6366f1);
  display: block;
  margin: 10px auto 0;
  border-radius: 3px;
}

.grid-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
}

.card {
  background: #ffffff;
  border-radius: 16px;
  padding: 25px 90px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
  font-size: 18px;
  font-weight: 600;
  color: #333;
  min-width: 180px;
  max-width: 240px;
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 1;
}

.card .icon {
  font-size: 36px;
  color: #0ea5e9;
  margin-bottom: 10px;
  transition: color 0.4s ease;
}

.card .label {
  position: relative;
  z-index: 1;
}

/* Hover Effects */
.card::before {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, #0ea5e9, #6366f1);
  transition: top 0.4s ease;
  z-index: 0;
}

.card:hover::before {
  top: 0;
}

.card:hover {
  color: #fff;
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.card:hover .icon {
  color: #fff;
}

.card.large {
  min-width: 260px;
  max-width: 360px;
}

/* Responsive */
@media (max-width: 768px) {
  .card {
    min-width: 140px;
    max-width: 100%;
  }

  .card.large {
    min-width: 220px;
  }
}

/* footer */

  #footer-outer {
    background-color: #1b222f;
    padding: 40px 20px;
    text-align: center;
  }

  .cta-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
  }

  .cta-button {
    background-color: #198fdd;
    color: #fff;
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
    text-transform: uppercase;
  }

  .cta-button:hover {
    background-color: #198fdd;
    transform: translateY(-3px);
  }

  @media (min-width: 600px) {
    .cta-container {
      flex-direction: row;
    }
  }




