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









h2 { font-family: 'Roboto', sans-serif; color:#fff; font-size:30px; margin:0px; padding:0px 0px 0px 0px; text-align: left }
h3 { font-family: 'Roboto', sans-serif; color:#117a4e; font-size:30px; margin:0px; padding:0px 0px 20px 0px; text-align: center }
h4 { margin:0px; padding:15px 0 10px 15px; font-family:'Roboto', sans-serif;  font-size:18px; text-align: left}

h5 { margin:0px; padding:0px; font-family:'Roboto', sans-serif; color:#fff; font-size:28px   }




/* Container styling */
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding:20px 0 25px 0;
   transition: all 0.3s ease; max-width: 1200px;  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-box {
   background: #05A53C;
    color: #fff;
    padding: 4px 8px;
    margin-right: 5px;
    border-radius: 3px; display: block; font-size: 20px; font-weight: 900
}

.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: 18px
}

.book-stall {
 background:#05A53C;
}

.visit {
  background:#FF0832;
}

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



.banner-bg {

  width: 100%;


  align-items: center;
  justify-content: center;
}

#banner-outer {

  width: 100%; display: inline-block; text-align: center; 

}

.banner-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

#background-video {
  width: 100%;
  height: 100%;
  object-fit: cover;

}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
}

.banner-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #fff;    top: 150px; 
}

.banner-text {
  font-size: 2.5rem;
  font-weight: bold;
  line-height:4rem;
  max-width: 800px;
  border-radius: 10px;

  margin-bottom: 0px;
  animation: fadeIn 1s ease-out both;  display: grid;

}

.banner-text1 {
  font-size: 1.5rem;
  font-weight: bold;
  line-height:4rem;
  max-width: 800px;
  border-radius: 10px;

  margin-bottom: 20px;
  animation: fadeIn 1s ease-out both;  display: grid;

}



.button-group {
  display: flex;
  gap: 15px;
}

.banner-button {
  display: inline-block;
  padding: 12px 24px;
background: var(--button, linear-gradient(90deg, #F72585 0%, #4361EE 60%, #4CC9F0 100%));
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 40px;
  transition: background-color 0.3s ease;
}

.banner-button:hover {
  background-color: #e64a19;
}

@media (min-width: 768px) {
  .banner-text {
    font-size: 2.5rem;  }
 
	
	
	
}

@media (min-width: 1024px) {
  .banner-text {
    font-size: 3rem;
  }
}

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


.clearout {
height:20px;
clear:both;
}

.welcome-projections {
  flex: 1.5;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  overflow: hidden;
}

.welcome-projections-header {
  background: #2c3e50;
  color: #fff;
  padding: 15px 20px;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.projections-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5px;
  padding: 18px;
}

.projection-card {
  display: flex;
  align-items: center;
  gap: 5px;
  background: #f8f9fc;
  border-radius: 8px;
  padding: 5px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.projection-icon {
  font-size: 16px;
  color: #f39c12;
  flex-shrink: 0;
}


#middle-outer02 {
  width: 100%;
  height: 100%;
  float: left;
  margin: 0px 0 0 0;
  padding: 55px 0 55px 0;
  background: #2c3e50;
}

#middle-outer02 h3 {
  font-size: 30px;
  text-align: center;
  color: #fff;
  font-weight: 700;
  }




.middle-inner02 {
  width: 1300px;
  height: 100%;
  margin: 0 auto;
  overflow: hidden;
  line-height: 32px;
  padding: 0px 0 0 0;
  display: flex;
  flex-wrap: wrap;
}

.exhibitor-main02 {
  width: 23%;
  height: auto;
  font: 16px/26px 'Roboto', sans-serif;
  color: #000;
  float: left;
  margin: 2% 0 0 2%;
  text-align: left;
  background: #fff;
}

.exhibitor-main02 img {
  width: 100%;
}

.exhibitor-main02 {
  width: 23%;
  height: auto;
  font: 16px/26px 'Roboto', sans-serif;
  color: #000;
  float: left;
  margin: 2% 0 0 2%;
  text-align: left;
  background: #fff;
}

.exhibitor-main02 strong {
  font-size: 16px;
  font-weight: 500;
  display: block;
  padding: 20px 20px;
  text-align: center;
}



#exhibitor-profile {
  padding: 60px 20px;
  background: #f9f9f9;

  position: relative;
  overflow: hidden;
}

.container1 {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.exhibitor-heading {
  font-size: 36px;
  color: #2c3e50;
  margin-bottom: 30px;
  font-weight: bold;
  text-align: center;
}

.scroll-buttons {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  z-index: 1;
  padding: 0 10px;
  pointer-events: none;
}
.scroll-buttons button {
  pointer-events: auto;
}

.scroll-btn {
  background:#05A53C;
  color: #fff;
  border: none;
  padding: 6px 16px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.scroll-btn:hover {
  background: #063c42;
}

.scroll-wrapper {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.exhibitor-grid {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
  will-change: transform;
}

.exhibitor-box {
  flex: 0 0 calc(33.333% - 20px);
  background: white;
  border-radius: 10px;

  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease; border: solid 1px #DCDCDC
}

.exhibitor-box img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.exhibitor-box p {
  margin-top: 15px;
  font-size: 16px;
	line-height: 1.8
}

.exhibitor-box span {
  margin-top: 25px; display: block;
  font-size: 20px; font-weight: 700; color: #05A53C;
}



.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) {

  .middle-inner02 {
    width: 100%;
    padding: 2%;
  }
  .exhibitor-main02 {
    width: 100%;
    margin: 0 0 2% 0;
  }
  .scroll-buttons {
    top: auto;
    bottom: 10px;
  }
}

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

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




.welcome-section {

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

}
 h1 {
  font-size: 1.6rem;
  color: #2c3e50;
  text-align: left !important;
  margin-bottom: 0px !important;

  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: 92%;
  height: auto;
  border-radius: 8px; margin: 0 auto
 
}
.show {
  opacity: 1;
  transform: translateY(0);
}
.image-show {
  opacity: 1;
  transform: scale(1);
}

@media (max-width: 600px) {
  .scroll-buttons {
    top: auto;
    bottom: 125px;
  }
}

@media (max-width: 768px) {
  .welcome-content {
    flex-direction: column; padding: 20px
  }
  .middle-inner02 {
    width: 100%;
    padding: 2%;
  }
  .exhibitor-main02 {
    width: 100%;
    margin: 0 0 2% 0;
  }
  .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(250px, 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: 1.2em;
            
            font-weight: 600;
        }

  


		 
		 
	 .banner {
      text-align: center;
      padding:30px 140px 30px 140px;
        background: #f2f2f2;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .banner:hover {
      transform: translateY(-5px);

    }

    .banner h5 {
      font-size: 1.2rem;
      margin: 0;
      color: #333; line-height:2rem;
    }

    .banner p {
      font-size: 1rem;
      color: #666;
      margin-top: 10px;
    }

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

      .banner p {
        font-size: 0.9rem;
      }
    }

    @media (max-width: 480px) {
      .banner h1 {
        font-size: 1.2rem;
      }

      .banner p {
        font-size: 0.8rem;
      }
    }	 




.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-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .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) {
      .exhibitor-box {
        flex: 0 0 100%;
      }
    }

  .main-container {
      width: 100%;
      background: url("https://img.tradeindia.com/new_website1/tradeshowslandingpage/indian-ceramics/bg2.png") center top; background-size: cover;
      color:#fff;
      padding: 25px 0;
    }

    .banner-container {
      max-width: 1200px;
      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: 53px;
      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;
    }

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

    .images img {
      width: 100%;
      max-width: 660px;
      border-radius: 16px;

      opacity: 0;
      transform: translateY(30px);
      transition: opacity 1s ease, transform 1s ease;
    }

    .images img.show {
      opacity: 1;
      transform: translateY(0);
    }

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

      .images {
        justify-content: center;
      }
    }

    #footer-outer1 {
      width: 100%;
      padding: 25px 0px;
      float: left;
      background: #F7F1E5;
    }
    .org-left {float: left;}
    .phone-right {float: right;}

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

#footer-outer {
    background: #111;
    padding: 30px 15px;
    text-align: center;
  }

  .but-footer a {
    display: inline-block;
    margin: 10px;
    padding: 15px 35px;
    background: #E40315;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.3s;
  }

  .but-footer a:hover {
    background: #c0392b;
  }
	



  .container{max-width:1000px;margin:0 auto;}
h1{text-align:center;color:#d62828;font-size:24px;margin-bottom:20px;}
.grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:20px;}
.card{background:#fff;padding:16px;border-radius:8px;box-shadow:0 2px 6px rgba(0,0,0,0.1);display:flex;gap:12px;align-items:flex-start;transition:transform .2s;}
.card:hover{transform:translateY(-4px);}
.icon{flex-shrink:0;width:40px;height:40px;border-radius:50%;background:#f5f2f2;color:#fff;display:flex;align-items:center;justify-content:center;font-size:20px;}
.card h3{margin:0;font-size:18px;color:#111; font-weight: 900; text-align: left; padding: 0px; margin: 0px;}
.card p{margin:6px 0 0;font-size:14px;color:#555;}

.benifit {
margin:0;

background:#f9f9f9;
color:#333;
padding:60px 0 100px 0;
}




@media (min-width: 1536px) {
    .container {
        max-width: 1250px !important;
    }
}




   .star-shape {
      clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 
                        79% 91%, 50% 70%, 21% 91%, 32% 57%, 
                        2% 35%, 39% 35%);
      background-color: #0f5c7e;
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      font-weight: 600;
      padding: 40px 20px;
      width: 250px;
      height: 250px;
      margin: 10px;
    }

    .max-w-6xl {    max-width: 78rem !important;}

    .p-6 {
    padding: .7rem !important; border: solid 1px #e7e7e7;
}

@media (min-width: 1024px) {
    .lg\:grid-cols-3 {
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
        
    }

    .gap-8 {
    gap: 1rem !important;
}

.mb-14 {     margin-bottom: 1.5rem !important;}

.to-orange-50 {background-color: #eaeaea !important; }
.w-40 {
    width: 40rem !important;
}

.h-40 {
    height: 18rem !important;}}

    