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


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

@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@600;700&display=swap');

body { margin:0px; padding:0px; font-family:'Roboto', sans-serif; background: #f6f6f6 }
img { 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:10px 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: #37B7CA; /* green */
      color: white;
      padding: 6px 0;
      font-size: 20px;
      font-weight: bold;
    }

    .date-bottom {
      background-color: #4D3CB0; /* orange */
      color: white;
      padding: 5px 0;
      font-size: 11px;
      font-weight: bold;
    }

.event-location {
    font-size: 18px;
    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:#37B7CA;
}

.visit {
  background:#4D3CB0;
}

.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;
}
	
	
	
	
}

























	










.exhibit {width:48%; height:auto; text-align:center;   float:left; margin:0px;  background:#319025; border-radius: 4px
}
.exhibit a { font-family:'Roboto', sans-serif; color:#fff; font-size:16px; display:block; padding:18px 0 18px 0; text-decoration:none; margin:0px; border-radius: 4px; text-transform: uppercase
}
.exhibit a:hover {
	text-decoration:none; background:#171717;  color:#fff; border-radius: 4px
}


.exhibit1 {width:48%; height:auto; text-align:center;   float:left; margin:0% 0 0 2%; background:#EE7F1A; border-radius: 4px 
}
.exhibit1 a { font-family:'Roboto', sans-serif; color:#fff; font-size:16px; display:block; padding:18px 0 18px 0; text-decoration:none; margin:0px; text-transform: uppercase
}
.exhibit1 a:hover {
	text-decoration:none; background:#171717;  color:#fff; border-radius: 4px
}




#footer-outer { width:100%;   padding:25px 0px; float:left; background:#F2F2F2}
#footer { width:60%;margin:0 auto; color:#fff; font-family:'codaregular'; font-size:15px; line-height:20px; overflow:hidden}

.footer-inner img{ max-width:100% }
.footer-inner1 { width:78%; float:right }


.footer-inner { width:66%; margin:0 auto; height:auto; overflow:hidden}

.but-footer { margin: 0 auto; width:45%; text-align:center;}
.but-footer img{ max-width:40%}
.trade { float:right; margin:0; width:20%; padding:10px 0 0 0; color:#000; text-align: center;}
.but-footer-inner { padding:0% 0 0 0  }








.exhibit-section {
  text-align: left;
  padding: 0px 0px 50px 0;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.exhibit-section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #ffffff;
  padding: 0px 0 0 0;
}

.exhibit-items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 15px;
}

.exhibit-item {
  background: #eaecef;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding:10px 15px;
  display: flex;
  align-items: center;
  font-size: 1rem;
  color: #000000;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.exhibit-item:before {
  content: attr(data-icon);
  font-size: 1.5rem;
  margin-right: 10px;
  color: #007bff;
}

.exhibit-item.show {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .exhibit-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .exhibit-items {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .exhibit-item {
 
    padding: 10px; text-align: left
  }
	

	
}

@media (max-width: 480px) {


  .exhibit-items {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .exhibit-item {
   
    padding: 8px;
  }
}




.welcome-section {

width: 100%;
  max-width: 1300px; margin: 0 auto; padding:50px 0 50px 0

}
 h1 {
  font-size: 1.6rem;
  color: #2c3e50;
  text-align: left;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.6s ease, transform 0.6s ease; line-height:2.5rem
}
.welcome-content {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap; 
}
.welcome-text {
  flex:1;
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.welcome-text p {
  margin-bottom: 15px;
}
.welcome-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s ease, transform 0.6s ease; 
}
.welcome-image img {
  max-width: 70%;
  height: auto;
  border-radius: 8px; margin: 0 auto
 
}
.show {
  opacity: 1;
  transform: translateY(0);
}
.image-show {
  opacity: 1;
  transform: scale(1);
}
@media (max-width: 768px) {
  .welcome-content {
    flex-direction: column; padding: 20px
  }
  .welcome-section h1 {
    font-size: 1.8rem;
  }
}
.facts-figures-main { background: #054E90; padding: 50px 0 0 0}
.facts-figures {
    display: flex;
    flex-direction: row; /* Arrange boxes in a row */
    justify-content: center;

    padding: 2em;

    color: #333;
    font-family: Arial, sans-serif;
    text-align: center;
    gap: 1em; /* Space between items */
}

.facts-figures h2 {
    flex-basis: 100%;
    text-align: center;
    font-size: 2em;
    margin-bottom: 1em;
    color: #ffffff;
}

.fact-item {
    display: flex;
    align-items: center;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 1em 2em;
    border-radius: 8px;
    width: 250px;
}

.fact-item i {
    font-size: 2.5em;
    color: #06C668;
    margin-right: 1em;
}

.fact-details h3 {
    font-size: 1.8em;
    margin: 0;
    color: #333;
}

.fact-details p {
    margin: 0;
    font-size: 1em;
    color: #555;
}

/* Icons for each item */
.icon-exhibitors::before {
    content: "\f0c0"; /* FontAwesome icon */
}

.icon-visitors::before {
    content: "\f0c0";
}

.icon-area::before {
    content: "\f0e7";
}

.icon-states::before {
    content: "\f0c0";
}

/* Responsive Design */
@media (max-width: 768px) {
    .facts-figures {
        flex-direction: column; /* Stack items vertically on smaller screens */
        text-align: center;
    }

    .fact-item {
        width: 100%; /* Full width for smaller screens */
        max-width: 300px;
    }
}


.focus-sectors-main { padding:50px 0px; background: #F2F2F2   }

.focus-sectors-main h4 { color:#000000; text-align: center;   font-size: 2em; padding: 0 0 20px 0}
.focus-sectors {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto;
         
        }
        .sector {
            text-align: center;
            padding:30px 20px;
            background:#fff;
            border-radius: 10px;
            transition: transform 0.3s, background 0.3s, color 0.3s; color: #0E3D58; line-height: 28px; box-shadow: 0px 2px 4px 3px rgba(0, 0, 0, 0.04);


        }
        .sector:hover {
            transform: translateY(-5px);
            background: #e0f7fa; color:#000000
        }
        .sector-icon {
            font-size: 2.5em;
            color: #00796b;
            margin-bottom: 25px;
        }
        .sector-title {
            font-size: 1em;
            
            font-weight: 600;
        }

  






	 





.visitor-section {
      padding: 60px 20px;
      text-align: center;     background:#0E3D58;
    }

    .visitor-section h2 {
      font-size: 38px;
      color: #ffffff;
      margin-bottom: 20px;
    }

    .visitor-section p.description {
      font-size: 18px;
      max-width: 950px;
      margin: 0 auto 20px;
      line-height: 1.7;
      color: #e0e0e0;
    }


    .visitor-card {
      background: #186DA6;
      padding: 25px 20px;
      border-radius: 16px;
      transition: transform 0.3s ease, background 0.3s ease;
      backdrop-filter: blur(10px);
    }

    .visitor-card:hover {
      transform: translateY(-6px);
      background: #ffffff20;
    }

    .visitor-card i {
      font-size: 40px;
      margin-bottom: 15px;
      color: #FFD700;
    }

    .visitor-card h3 {
      font-size: 18px;
      margin: 10px 0 5px;
      color: #fff;
    }

    .visitor-card p {
      font-size: 32px;
      font-weight: bold;
      color: #fff;
      margin: 0;
    }

    @media (max-width: 600px) {
      .visitor-section h2 {
        font-size: 30px;
      }
      .visitor-card h3 {
        font-size: 16px;
      }
    }

  .main-container {
      width: 100%;
      background: url("https://img.tradeindia.com/new_website1/tradeshowslandingpage/electronica-india/2025/bg.png") center top; background-size: cover;
      color:#fff;
      padding: 90px 0;
    }

    .banner-container {
      max-width: 1300px;
      margin: 0 auto;
      padding: 0 20px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 30px;
    }

    .text-content {
      flex: 1 1 350px;
      max-width: 600px;
    }

    .text-content .logo {
      height: 64px;
      margin-bottom: 20px;
    }

    .text-content .title {
      font-size: 38px;
      font-weight: bold;
      margin-bottom: 10px;
    }

    .text-content .subtitle {
      font-size: 22px;
      margin-bottom: 15px;
    }

    .text-content .desc {
      font-size: 18px;
      line-height: 1.6;
    }

    .https://img.tradeindia.com/new_website1/tradeshowslandingpage/bioenergyindia {
      display: flex;
  
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .https://img.tradeindia.com/new_website1/tradeshowslandingpage/bioenergyindia img {
      width: 100%;
      max-width: 250px;
      border-radius: 16px;
      box-shadow: 0 8px 16px rgba(0,0,0,0.2);
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 1s ease, transform 1s ease;
    }

    .https://img.tradeindia.com/new_website1/tradeshowslandingpage/bioenergyindia img.show {
      opacity: 1;
      transform: translateY(0);
    }

    @media (max-width: 768px) {
      .banner-container {
        flex-direction: column;
        text-align: center;
      }

      .https://img.tradeindia.com/new_website1/tradeshowslandingpage/bioenergyindia {
        justify-content: center;
      }
    }

.banner-vedio {
      position: relative;
      width: 100%;
      overflow: hidden;
      color: white; margin: 0 auto; text-align: center;
    }


aside{
      max-width: 1300px;
      margin: auto;
      padding:60px 20px 60px 20px;
    }

    h2 {
      text-align: center;
      font-size: 2rem;
      margin-bottom: 30px; color: #FFFFFF

    }

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

    .card {
      background: #fff;
      border-radius: 8px;
      padding: 25px;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
      transition: transform 0.3s ease, box-shadow 0.3s ease; text-align: center
    }

    .card:hover {
      transform: translateY(-8px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

    .card-icon {
      font-size: 2.2rem;
      margin-bottom: 15px;
      color: #018CD2;
    }

    .card h3 {
      margin: 0 0 10px;
      font-size: 1.4rem;
      color: #018CD2;
    }

    .card p {
      color: #555;
      line-height: 1.5;
    }




.gallery-container {
      max-width: 1200px;
      margin: 40px auto;
      padding: 0 20px;
    }


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

    .grid1 img {
      width: 100%;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      cursor: pointer;
    }

    .grid1 img:hover {
      transform: scale(1.05);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    }

    .lightbox {
      display: none;
      position: fixed;
      z-index: 1000;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background: rgba(0, 0, 0, 0.9);
      justify-content: center;
      align-items: center;
      flex-direction: column;
    }

    .lightbox-header {
      position: absolute;
      top: 20px;
      right: 30px;
      z-index: 1010;
    }

    .close-icon {
      font-size: 30px;
      color: #fff;
      cursor: pointer;
    }

    .lightbox img {
      max-width: 90vw;
      max-height: 80vh;
      border-radius: 10px;
    }

    .lightbox.active {
      display: flex;
    }

    .lightbox-controls {
      position: absolute;
      bottom: 40px;
      display: flex;
      justify-content: center;
      gap: 40px;
    }

    .control-btn {
      background-color: #fff;
      border: none;
      padding: 10px 20px;
      font-size: 16px;
      border-radius: 6px;
      cursor: pointer;
      transition: background 0.3s;
    }

    .control-btn:hover {
      background-color: #ddd;
    }
 .countdown-container {
            display: grid;
            grid-template-columns: repeat(4, 0fr);
            gap: 20px;
            text-align: center; justify-content: center
        }

        .countdown-item {
         
            padding: 20px 40px;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); border: solid 1px #fff
        }

        .countdown-item span {
            display: block;
            font-size: 3em;
            margin-bottom:0px;
            color: #fff; font-weight: bold
        }

        .countdown-item label {
            font-size: 1em;
            color: #fff;
        }
			
@media screen and (max-width:480px) {
			.countdown-container{grid-template-columns: repeat(2, 0fr);} 
			}



    .scroll-top {
      position: fixed;
      bottom: 20px;
      right: 20px;
      width: 50px;
      height: 50px;
   background: linear-gradient(90deg, #0880B8 0%, #0C8EB5 50%, #14A7B1 100%);
      border: none;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 999;
      transition: background 0.3s ease, transform 0.3s ease;
    }

    .scroll-top:hover {
      background: #14A7B1;
      transform: scale(1.1);
    }

    .scroll-top svg {
      position: absolute;
      top: 0;
      left: 0;
      transform: rotate(-90deg);
    }

    .scroll-bg,
    .scroll-bar {
      fill: none;
      stroke-width: 4;
    }

    .scroll-bg {
      stroke: rgba(255, 255, 255, 0.1);
    }

    .scroll-bar {
      stroke: #fff;
      stroke-dasharray: 263.36;
      stroke-dashoffset: 263.36;
      transition: stroke-dashoffset 0.25s ease-out;
    }

    .arrow-icon {
      font-size: 28px;
      color: #fff;
      z-index: 2;
      pointer-events: none; font-weight: bolder
    }


.industry-section {
  padding: 50px 20px;
  background: #f8f9fa;
  font-family: Arial, sans-serif;
  text-align: center;
}

.industry-section h2 {
  font-size: 1.5rem;
  margin:0 0 40px 0;
  color: #1a1a1a; 
}

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

.industry-item {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  font-size: 1rem;
  position: relative;
  align-items: center;
  gap: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease; width: 100%; 
}



.industry-item .icon {
  font-size: 24px;
  margin-right: 8px;
  vertical-align: middle;
}

.industry-item .desc {
  display: block;
  margin-top: 8px;
  color: #555;
  font-size: 16px; line-height: 1.8
}



.industry-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.industry-item .icon {
  font-size: 1.5rem;
}







   .container {
      max-width: 1300px;
      margin: auto;
      padding: 3rem 1rem;
      position: relative;
    }

    .decor {
      position: absolute;
      top: 20px;
      right: 20px;
      background: radial-gradient(circle at center, #f5a623 0%, #f39c12 100%);
      width: 40px;
      height: 40px;
      border-radius: 50%;
    }

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

    .stat-item {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
    }

    .stat-icon {
      font-size: 2.5rem;
      color: var(--orange);
      flex-shrink: 0;
    }

    .stat-content {
      display: flex;
      flex-direction: column;
    }

    .stat-number {
      font-size: 1.8rem;
      font-weight: 800;
      color: var(--blue);
    }

    .stat-text {
      font-size: 1rem;
      color: #333;
      line-height: 1.4;
      margin-top: 0.2rem;
    }

    @media (max-width: 600px) {
      .stat-item {
        flex-direction: row;
        align-items: center;
      }

      .stat-number {
        font-size: 1.6rem;
      }

      .stat-icon {
        font-size: 2rem;
      }

      .stat-text {
        font-size: 0.95rem;
      }
    }


    .banner {
      position: relative;
      width: 100%;
  
      overflow: hidden;
      display: flex;
      flex-direction: column; padding:0px; margin: 0px
    }

    .logo-bar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 5%;
    }

    .logo-bar img {
      height: 100px;
      object-fit: contain;
    }

    .main-content {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 5%;
      box-sizing: border-box;
    }

    .banner-content {
      max-width: 60%;
      color: #fff;
      transform: translateX(-100%);
      opacity: 0;
      transition: all 1s ease;
    }

    .banner-content.show {
      transform: translateX(0);
      opacity: 1;
    }

    .banner .date {
      font-size: 2.8rem;
      color: #ffeb3b;
      margin-bottom: 10px; font-weight: 900
    }

    .banner h5 {
      font-size: 2.2rem;
      color: #fff;
      margin:0 0 20px;
    }

    .banner h2 {
      font-size: 1.5rem;
      margin-bottom: 15px;
    }

    .tags {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .tag {
      background-color: #004a99;
      color: #fff;
      padding: 8px 16px;
      border-radius: 20px;
      font-size: 20px;
      transition: background-color 0.3s ease; font-weight: 900
    }

    .tag:hover {
      background-color: #007bff;
    }

    .banner-image {
      max-width: 35%;
      opacity: 0;
      transform: translateY(50px);
      transition: all 1.5s ease;
    }

    .banner-image.show {
      opacity: 1;
      transform: translateY(0);
    }

    .banner-image img {
      width: 84%;
      height: auto; float: right
    }

    @media (max-width: 768px) {
      .main-content {
        flex-direction: column;
        padding: 30px 20px;
      }

      .banner-content {
        max-width: 100%;
        text-align: center;
      }

      .banner h1 {
        font-size: 2rem;
      }

      .banner-image {
        max-width: 80%;
        margin-top: 20px;
      }

      .logo-bar {
        flex-direction: column;
        gap: 10px;
      }

      .logo-bar img {
        height: 50px;
      }
    }



.benefits-section {
      background: #00d42b;
      color: #fff;
      text-align: center;
      padding: 60px 0px 60px;
      position: relative;
      overflow: hidden; max-width: 1300px; margin: 0 auto; border-radius: 8px
    }


    .benefits-section h2 {
      font-size: 36px;
      font-weight: 900;
      margin-bottom: 40px;
      position: relative;
      z-index: 2;
    }

    .stats-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 40px;
      max-width: 1200px;
      margin: auto;
      position: relative;
      z-index: 2;
    }

    .stat-box {
      flex: 1 1 180px;
      min-width: 180px;
    }

    .stat-box h3 {
      font-size: 40px;
      margin: 0;
    }

    .stat-box p {
      font-weight: 600;
      margin: 5px 0 0;
      font-size: 15px;
    }

    .stat-box i {
      font-size: 24px;
      display: block;
      margin-bottom: 10px;
      color: #fff;
    }

    .info-section-wrapper {
      position: relative;
      margin-top: -150px; /* pull over green section */
      z-index: 5;
    }

    .info-section {
      background: transparent;
      padding: 0 20px 60px;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      max-width: 1200px;
      margin: auto;
    }

    .info-box {
      background: #fff;
      padding: 30px;
      max-width: 360px;
      flex: 1 1 300px;
      border-radius: 10px;
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
    }

    .info-box:hover {
      transform: translateY(-6px);
    }

    .info-box h4 {
      color: #003366;
      margin-bottom: 15px;
      font-size: 20px;
    }

    .info-box p {
      color: #555;
      font-size: 15px;
      line-height: 1.6;
    }

    .read-more-btn {
      display: inline-block;
      margin-top: 20px;
      padding: 10px 20px;
      background: #f2f7ff;
      border: 1px solid #d0dffa;
      color: #003366;
      border-radius: 6px;
      text-decoration: none;
      font-weight: 700;
      transition: background 0.3s;
    }

    .read-more-btn:hover {
      background: #d0dffa;
    }

    @media (max-width: 768px) {
      .stat-box h3 {
        font-size: 28px;
      }

      .info-section {
        flex-direction: column;
        align-items: center;
      }
    }

 .contact-bar {
      width: 100%;
      background-color: #319025; /* Change as needed */
      color: white;
      padding: 25px 0px;
      font-size: 28px;
      text-align: center;
      font-family: Arial, sans-serif;
    }
    .contact-bar a {
      color: white;
      text-decoration: none;
    }
    .contact-bar a:hover {
      text-decoration: underline;
    }



.footer-cta {
  text-align: center;
  padding: 30px 15px;
  background-color:#eaeaea
}

.cta-button {
  display: inline-block;
  margin: 10px;
  padding: 15px 40px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  color: #fff;
  transition: background-color 0.3s ease; font-size: 20px
}

/* Different button colors */
.cta-exhibit {
  background-color: #302088; /* Green */
}

.cta-exhibit:hover {
  background-color: #231573;
}

.cta-visit {
  background-color: #37B7CA; /* Amber */
  color: #fff; /* Contrast for yellow background */
}

.cta-visit:hover {
  background-color: #1a99ac;
}


.section {
      text-align: center;
      padding: 40px 0px; max-width: 1300px; margin: 0 auto
    }

    .section .subtitle {
      color: #f8a100;
      font-weight: bold;
      margin-bottom: 10px;
      font-size: 1rem;
    }

    .section h2 {
      font-size: 2.5rem;
      font-weight: bold;
      margin-bottom: 40px;
    }

    .expo-layout {
      display: flex;
      justify-content: center;
      align-items: flex-start;
      gap: 30px;
      flex-wrap: wrap;
    }

    .expo-column {
      flex: 1 1 300px;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .expo-card {
      background: #f5f5f5;
      border-radius: 10px;
      padding: 20px;
      text-align: left;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .expo-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .expo-icon {
      width: 40px;
      height: 40px;
      background-color: #84c225;
      color: white;
      font-size: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      margin-bottom: 10px;
    }

    .expo-title {
      font-size: 1.2rem;
      font-weight: bold;
      margin-bottom: 10px;
    }

    .expo-description {
      font-size: 0.95rem;
      line-height: 1.5;
    }

    .expo-image {
      text-align: center;
    }

    .expo-image img {
      max-width: 100%;
      width: 500px;
      height: auto;
      border-radius: 10px; margin: 30px 0 0 0
    }

    @media screen and (max-width: 768px) {
      .expo-layout {
        flex-direction: column;
        align-items: center;
      }

      .expo-image img {
        width: 100%;
      }
    }






   .row {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      margin-bottom: 40px;
    }

    .column {
      min-width: 120px;
      text-align: center;
      margin: 10px;
    }

    .heading {
      font-weight: bold;
      margin-bottom: 15px;
      font-size: 18px;
    }

    .logos {
      background: #fff;
      padding: 10px;
      border-radius: 8px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
      display: inline-block;
	 transition: transform 0.3s ease, box-shadow 0.3s ease;
		
    }
 .logos:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }




    .logos img {
      max-width: 180px;
      height: auto;
    }

    .logo-group {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
    }

    .full-width-heading {
      width: 100%;
      text-align: center;
      font-weight: bold;
      font-size: 18px;
      margin-bottom: 20px;
    }

    /* Divider layout for Inspired & In Association */
    .inspired-association-wrapper {
      display: flex;
      justify-content: center;
      align-items: stretch;
      flex-wrap: wrap;
      gap: 0px;
      margin: 60px 0px; 
    }

    .inspired-section,
    .association-section {
      flex: 1 1 300px;
      max-width: 900px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .divider {
      width: 2px;
      background-color: #ccc;
      height: auto;
      min-height: 100px;
    }

    @media (max-width: 768px) {
		
		.heading {font-size: 12px}
		   .inspired-section,
    .association-section {
      flex: 1 1 1px; padding: 20px 0 0 0
 
    }
		
		
		
      .inspired-association-wrapper {
        flex-direction: column;
        align-items: center;
      }

      .divider {
        display: none;
      }

      .logos img {
        max-width: 100px;
      }

      .column {
        width: 30%;
      }
    }



.feature-section {
    padding: 30px 20px 60px;
    background: #f8faff;
    font-family: Arial, sans-serif;
}

.auto-container {
    max-width: 1300px;
    margin: 0 auto;
}

.sec-title h2 {
    font-size: 34px;
    color: #00014B;
    margin-bottom: 20px;
    font-weight: 700;
}

.sec-title .divider {
    display: block;
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, #E10B1E, #ff4d4d);
    margin: 0 auto 40px;
    border-radius: 4px;
}

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

.exih-box {
    background: #fff;
    text-align: center;
    padding: 10px 10px;
    border-radius: 16px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.07);
    transition: all 0.35s ease;
    cursor: pointer;
    position: relative;
}

.exih-box:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 22px rgba(0,0,0,0.12);
    background: linear-gradient(145deg, #ffffff, #f3f7ff);
}

.hexagon { margin: 0 0 15px 0;}



.hexagon img {
    width:100%;
    height: auto;
    transition: transform 0.35s ease;
    border-radius: 8px;
}



.exih-box p {
    font-size: 16px;
    color: #333;
    margin: 0;
    font-weight: 600;
    transition: color 0.3s ease;
}

.exih-box:hover p {
    color: #E10B1E;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .sec-title h2 {
        font-size: 26px;
    }
}




.testi-area-1 {
    background: url('https://img.tradeindia.com/new_website1/tradeshowslandingpage/unitedchemicalshow/bg.jpg') no-repeat center/cover;
    padding: 30px 20px;
    position: relative;
    color: #fff;
}

.testi-area-1::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(48,32,136,0.7);
    z-index: 1;
}

.testi-area-1 .title-area {
    position: relative;
    z-index: 2;
    margin-bottom: 40px;
}

.sec-title {
    font-size: 36px;
    font-weight: bold;
    color: #fff;
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    position: relative;
    z-index: 2;
}

.counter-card {
    background: rgba(55, 183, 202, 0.6);
    border-radius: 10px;
    text-align: center;
    padding: 25px 15px;
    transition: transform 0.3s ease, background 0.3s ease;
    backdrop-filter: blur(6px);
}

.counter-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.2);
}

.box-number {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #fff;
}

.counter-sign {
    color: #f2ff00;
    font-size: 28px;
    font-weight: bold;
}

.box-text {
    font-size: 16px;
    color: #f1f1f1;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .sec-title {
        font-size: 28px;
    }
    .box-number {
        font-size: 24px;
    }
}




   /* ===== Feature Section ===== */


.feature-section .container {
    max-width: 1300px;
    margin: auto;
}

.sec-title .sub-title {
    display: block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #e10b1e;
    text-transform: uppercase;
    text-align: center;
}

.sec-title h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 8px 0 20px;
    color: #00014b;
}

.sec-title .divider {
    width: 60px;
    height: 3px;
    background: #e10b1e;
    margin: 15px auto 0;
}

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

/* ===== Feature Cards ===== */
.feature-block .inner-box {
    background: #fff;
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.feature-block:nth-child(1) .inner-box { animation-delay: 0.1s; }
.feature-block:nth-child(2) .inner-box { animation-delay: 0.2s; }
.feature-block:nth-child(3) .inner-box { animation-delay: 0.3s; }
.feature-block:nth-child(4) .inner-box { animation-delay: 0.4s; }
.feature-block:nth-child(5) .inner-box { animation-delay: 0.5s; }
.feature-block:nth-child(6) .inner-box { animation-delay: 0.6s; }
.feature-block:nth-child(7) .inner-box { animation-delay: 0.7s; }
.feature-block:nth-child(8) .inner-box { animation-delay: 0.8s; }

.feature-block .inner-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: #f8f8f8;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.icon-box i {
    max-width: 50%;
    transition: transform 0.4s ease, filter 0.3s ease;
    font-size: 24px;
}

.feature-block .inner-box:hover .icon-box {
    background: #e10b1e;
}

.feature-block .inner-box:hover .icon-box i {
    transform: scale(1.1);
    filter: brightness(0) invert(1);
}

.feature-block h4 {
    font-size: 16px;
    color: #00014b;
    font-weight: 600;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.feature-block .inner-box:hover h4 {
    color: #e10b1e;
}

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

/* ===== Responsive Tweaks ===== */
@media (max-width: 768px) {
    .sec-title h2 {
        font-size: 24px;
    }
}
 



:root{
    --gap: 12px;
    --radius: 16px;
    --overlay: rgba(0,25,55,.72);
  }
  *{box-sizing:border-box}


  /* ======= Mosaic Grid ======= */
  .mosaic{
    width:min(1300px,95vw);
    display:grid;
    grid-template-columns: repeat(5, 1fr);
    grid-auto-rows: 200px;
    gap:var(--gap);
    margin: 0 auto;
  }
  .cell,
  .center{
    position:relative;
    border-radius:var(--radius);
    overflow:hidden;
    background:#0b0b0b;
  }

  /* explicit placement: row/col like the screenshot */
  .cell.a{grid-column:1; grid-row:1;}
  .cell.b{grid-column:2; grid-row:1;}
  .cell.c{grid-column:3; grid-row:1;}
  .cell.d{grid-column:4; grid-row:1;}
  .cell.e{grid-column:5; grid-row:1;}

  .cell.f{grid-column:1; grid-row:2;}
  .center {grid-column:2 / span 3; grid-row:2 / span 2;}
  .cell.g{grid-column:5; grid-row:2;}

  .cell.h{grid-column:1; grid-row:3;}
  .cell.i{grid-column:5; grid-row:3;}

  .cell.j{grid-column:1; grid-row:4;}
  .cell.k{grid-column:2; grid-row:4;}
  .cell.l{grid-column:3; grid-row:4;}
  .cell.m{grid-column:4; grid-row:4;}
  .cell.n{grid-column:5; grid-row:4;}

  /* slideshow images */
  .cell img{
    position:absolute; inset:0;
    width:100%; height:100%; object-fit:cover;
    opacity:0; transition:opacity 1.2s ease-in-out;
    display:block;
  }

  /* ======= Center video ======= */
  .center iframe{
    position:absolute; inset:0;
    width:100%; height:100%;
    border:0;
  }
  .center .overlay{
    position:absolute; inset:0;
    z-index:2;
    display:flex; flex-direction:column; align-items:center; justify-content:center;
    text-align:center; color:#fff; padding:0px;
    /* soft bluish gradient like your art */
    background:
      radial-gradient(70% 90% at 50% 10%, rgba(0,180,216,.25) 0%, rgba(0,180,216,0) 60%) ,
      linear-gradient(180deg, rgba(0,30,60,.65) 0%, rgba(0,20,45,.78) 100%);
    border-radius:var(--radius);
  }
  .overlay img.logo{
    width:min(170px,45%);
    height:auto; display:block; margin:0 0 8px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,.35));
  }
  .overlay .tagline{
    font-size:14px; letter-spacing:.08em; opacity:.9;
    margin:2px 0 10px; white-space:nowrap;
  }
  .overlay h1{
    font-size:28px; margin:6px 0 8px; font-weight:800; letter-spacing:.01em;
  }
  .overlay .date{
    font-size:20px; font-weight:800; margin:2px 0;
  }
  .overlay .venue{
    font-size:18px; font-weight:700; margin:0 0 4px;
  }
  .overlay .city{
    font-size:16px; opacity:.95; margin:0 0 14px;
  }
  .cta{
    display:flex; gap:10px; flex-wrap:wrap; justify-content:center;
  }
  .btn{
    display:inline-block; padding:11px 20px; border-radius:8px;
    font-weight:800; text-decoration:none; color:#fff; transition:transform .15s ease, opacity .2s ease, filter .2s ease;
  }
  .btn-stand{ background:#127199; }
  .btn-stand:hover{ filter:brightness(1.05); transform:translateY(-1px); }
  .btn-ticket{ background:#00d4a0; color:#072b2e; }
  .btn-ticket:hover{ filter:brightness(1.05); transform:translateY(-1px); }

  /* ======= Responsive ======= */
  @media (max-width: 980px){
    .mosaic{ grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
    .cell.a{grid-column:auto; grid-row:auto;}
    .cell.b{grid-column:auto; grid-row:auto;}
    .cell.c{grid-column:auto; grid-row:auto;}
    .cell.d{grid-column:auto; grid-row:auto;}
    .cell.e{grid-column:auto; grid-row:auto;}
    .cell.f{grid-column:auto; grid-row:auto;}
    .center{grid-column:1 / span 2; grid-row:auto;}
    .cell.g{grid-column:auto; grid-row:auto;}
    .cell.h{grid-column:auto; grid-row:auto;}
    .cell.i{grid-column:auto; grid-row:auto;}
    .cell.j{grid-column:auto; grid-row:auto;}
    .cell.k{grid-column:auto; grid-row:auto;}
    .cell.l{grid-column:auto; grid-row:auto;}
    .cell.m{grid-column:auto; grid-row:auto;}
    .cell.n{grid-column:auto; grid-row:auto;}
    .overlay h1{font-size:22px}
    .overlay .date{font-size:18px}
    .overlay .venue{font-size:16px}
    .overlay .city{font-size:14px}
    .overlay .tagline{font-size:12px; white-space:normal}
  }


  .visitor-fields {
  padding: 60px 20px;
  background: #f8faff;
  border-radius: 12px;

}

.visitor-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 40px;
  font-weight: 700;
  color: #003366;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.visitor-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.visitor-item i {
  font-size: 22px;
  color: #127199;
  flex-shrink: 0;
}

.visitor-item span {
  font-size: 16px;
  font-weight: 500;
  color: #333;
  line-height: 1.4;
}

.visitor-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
  background: #eaf7ff;
}







  :root{
      --accent1:linear-gradient(90deg,#2563eb,#06b6d4);
      --muted: #555;
    }
    *{box-sizing:border-box}

    .wrap{max-width:1300px; margin:48px auto;padding:0px;border-radius:14px; }

    header{display:flex;gap:16px;align-items:center;margin-bottom:24px}
    .badge{display:inline-grid;place-items:center;width:72px;height:72px;border-radius:12px;background:#f3f4f6;box-shadow:inset 0 -4px 10px rgba(0,0,0,0.05);border:1px solid #e5e7eb}
    .badge svg{width:40px;height:40px}
    h4{font-size:28px;margin:0 0 2px 0;font-weight:800;letter-spacing:0.6px;color:#1f2937}
    .sub{font-size:14px;color:var(--muted);margin-top:2px}

    .hero{display:flex;flex-wrap:wrap;gap:24px;align-items:stretch}
    .left{flex:1 1 800px;min-width:260px}
    .card1{background:#ffffff;padding:24px;border-radius:12px;border:1px solid #e5e7eb;box-shadow:0 4px 12px rgba(0,0,0,0.06)}

    article p{color:#374151;line-height:1.7;margin:0 0 16px 0;font-size:16px}
    article strong{color:#1d4ed8}

    .accent-line{height:6px;border-radius:6px;background:var(--accent1);margin:20px 0}

    .right{width:360px;flex:0 0 360px}
    .stats{display:grid;grid-template-columns:1fr;gap:16px}
    .stat{padding:16px;border-radius:10px;background:#f9fafb;border:1px solid #e5e7eb}
    .stat h3{margin:0;font-size:14px;color:#2563eb;font-weight:700}
    .stat p{margin:6px 0 0 0;color:#374151;font-size:14px}

    footer{margin-top:20px;display:flex;justify-content:space-between;align-items:center;gap:10px;flex-wrap:wrap}
    .cta{padding:10px 16px;border-radius:10px;color:#fff;font-weight:700;border:none;cursor:pointer}
    .small{font-size:14px;color:var(--muted)}

    /* responsive */
    @media (max-width:960px){
      .right{width:100%;flex:1 1 100%}
      header{align-items:flex-start}
      .hero{flex-direction:column}
    }

    /* subtle entrance */
    .wrap{transform:translateY(6px);opacity:0;animation:pop .5s ease forwards}
    @keyframes pop{to{transform:none;opacity:1}}