@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:20px 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: 70px;
      text-align: center;
      border-radius: 5px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

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

    .date-bottom {
      background-color: #000002; /* orange */
      color: white;
      padding: 5px 0;
      font-size: 14px;
      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:#E51D25;
}

.visit {
  background:#000002;
}

.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-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-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) {
      .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:20px 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: 16px;
      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;

    }

    .card h3 {
      margin: 0 0 10px;
      font-size: 1rem;
      color: #000;
    }

    .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: #dd2c1d;
      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: #020202;
      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: 2rem;
  margin:0 0 40px 0;
  color: #1a1a1a; 
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 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: 90%; font-size: 22px; 
}



.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: 1200px;
      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: #DC1C20; /* Green */
}

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

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

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


.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: 250px;
      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%;
      }
    }


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

    .profile-card {
      display: flex;
      background: #ffffff;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
      margin-bottom: 40px;
    }

    .card-left {
      background: #E51D25;
      color: #fff;
      flex: 1;
      padding: 20px;
      display: flex;
      flex-direction: column;
      justify-content: flex-start; text-align: left;
    }

    .card-left img {
      width: 100%;
      height: auto;
      border-radius: 8px;
      margin-bottom: 20px;
    }

    .card-icon {
      font-size: 24px;
      margin-bottom: 10px; 
    }

    .card-left h2 {
      margin: 0;
      font-size: 22px;
      font-weight: bold; color: #FFFFFF;  text-align: left;
    }

    .card-left p {
      font-size: 15px;
      margin-top: 10px; 
    }

    .card-right {
      flex: 2;
      padding: 30px 20px;
      background-color: #ffffff;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .grid-layout {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 12px;
    }

    .grid-block {
      background: #f8f9fa;
      padding: 10px 14px;
      border-radius: 8px;
      font-size: 15px;
      color: #004080;
      font-weight: 500;
      text-align: center; 
      border: solid 1px #ebebeb; font-weight: bold; text-align: left;
    }

    @media (max-width: 768px) {
      .profile-card {
        flex-direction: column;
      }
    }