@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; line-height: 1.6  }
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}


.fas {
    color: #F28A02!important
}





    .fade-in {
      opacity: 0;
      transform: translateY(20px);
      transition: all 1s ease;
    }
    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }



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: 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-box {
   background: #B92032;
    color: #fff;
    padding: 10px 15px;
    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: 10px 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:#B92032;
}

.visit {
  background:#EA9223;
}

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






	
	







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





.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: 1200px; margin: 0 auto; padding: 50px 0

}
 h1 {
  font-size: 1.6rem !important;
  color: #2c3e50;
  text-align: left;
  margin-bottom: 20px !important;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.6s ease, transform 0.6s ease; line-height:2.5rem; font-weight: bold !important;
}
.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: 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/waremat/2025 {
      display: flex;
  
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .https://img.tradeindia.com/new_website1/tradeshowslandingpage/waremat/2025 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/waremat/2025 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/waremat/2025 {
        justify-content: center;
      }
    }

.banner-vedio {
      position: relative;
      width: 100%;
      overflow: hidden;
      color: white;
    }

    .banner-vedio .banner {

      width: 100%;
      height: 100%;

    }

    .banner-content {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      width: 90%;
      max-width: 1400px;
      margin: 0 auto;
      padding: 60px 20px 180px;
      flex-wrap: wrap;
      position: relative; 
   
    }

    .left {
      flex: 1 1 300px;
    }

    .left img {
      max-width: 300px;
      margin-bottom: 20px;
    }

    .text-block {
      color: white;
      font-size: 34px;
      line-height: 1.4;
      max-width: 500px;
    }

    .date-banner {
      position: absolute;
      right: 30px;
      bottom: 80px;
      text-align: right;
      font-size: 24px;
      line-height: 1.6;
    }

    .date-banner a {
      color: white;
      text-decoration: none;
      font-size: 18px;
    }

    @media (max-width: 768px) {
      .banner-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 40px 20px 120px; background: linear-gradient(95deg, #2C585B 2.76%, #3D7C81 51.38%, #2C585B 100%);
      }

      .left img {
        max-width: 200px;
      }

      .text-block {
        font-size: 20px;
      }

      .date-box {
        position: static;
        margin-top: 40px;
        font-size: 20px;
      }
    }
aside{
      max-width: 1200px;
      margin: auto;
      padding:10px 20px 60px 20px;
    }

    h2 {
      text-align: center;
      font-size: 2rem !important;
      margin:20px 0px !important; color: #FFFFFF;
      font-weight: bold !important;

    }

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

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

    .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: #0077cc;
    }

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

    .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: 10px 30px;
            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: 2.5em;
            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: #B92032;
      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: #EA9223;
      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: #ffffff;
      stroke-dasharray: 263.36;
      stroke-dashoffset: 263.36;
      transition: stroke-dashoffset 0.25s ease-out;
    }

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



.preview-container {
      max-width: 1120px;
      margin:50px auto;
      padding: 60px 40px;
      background: linear-gradient(to right, #B92032, #EA9223);
      display: flex;
      flex-direction: column;
      align-items: center;
      transition: all 0.3s ease-in-out; color: #FFFFFF; border-radius: 12px
    }

    .preview-title {
      font-size: 32px;
      font-weight: bold;
      text-align: center;
      margin-bottom: 30px;    }

    .highlight {
      color: #ff9900;
    }

    .preview-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 30px;
      width: 100%;
    }

    .preview-item {
      border-left: 2px solid #ffffff;
      padding-left: 15px;
      transition: transform 0.3s;
    }

.preview-item img{
     max-width:20%
    }


    .preview-item:hover {
      transform: scale(1.05);
    }

    .preview-number {
      font-size: 46px;
      font-weight: bold;
      margin:0px;
    }

    .preview-label {
      font-size: 16px;
      color: #cce7f1;
    }

    .bottom-note {
      margin-top: 40px;
      font-size: 12px;
      color: #aaddff;
    }

    @media (max-width: 768px) {
      .preview-title {
        font-size: 24px;
      }
    }
.middle-outer { padding: 60px 0; background: #ECECEC}
 .container {
      max-width: 1200px;
      margin: auto;
      padding: 0px 0;
    }

    .title {
      font-size: 28px;
      font-weight: bold;
    }

    .title span {
      color: #f6921e;
    }

    .bar-group {
      display: flex;
      align-items: center;
      margin: 25px 0;
      flex-wrap: wrap;
    }

    .progress-container {
      flex: 0 0 250px;
      background-color: #eee;
      border-radius: 20px;
      overflow: hidden;
      height: 26px;
      position: relative;
      margin-right: 20px;
    }

    .progress-bar {
      height: 100%;
      background-color: #f6921e;
      border-radius: 20px 0 0 20px;
      color: #fff;
      font-weight: bold;
      text-align: right;
      padding-right: 10px;<br>
 align-items: center;
      width: 0;
      white-space: nowrap;
      transition: width 1s ease;
    }

    .bar-label {
      flex: 1;
      font-size: 16px;
      min-width: 200px;
    }

    .note {
      font-size: 12px;
      color: #666;
      text-align: right;
      margin-top: 20px;
    }

    @media (max-width: 600px) {
      .bar-group {
    
        align-items: flex-start;
      }
		.progress-bar {height: auto}
		
		
      .progress-container {
        width: 100%;
        margin: 0 0 8px 0;
      }

      .bar-label {
        font-size: 14px;
        margin-left: 0;
        text-align: left;
        width: 100%;
      }
    }


.heading {
      font-size: 36px;
      color: #0a0a0a;
      font-weight: bold;
      margin-bottom: 20px;
      text-align: center;
    }

    .highlight {
      color: #f89c1c;
    }

    .intro {
      background: #ffffff;
      padding: 20px 30px;
      border-left: 5px solid #f89c1c;
      border-radius: 8px;
      margin-bottom: 40px;
      transition: all 0.3s ease;
    }

    .intro:hover {
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
      transform: translateY(-2px);
    }

    .grid2 {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
    }

    .column {
      background: white;
      border-radius: 8px;
      padding: 20px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.05);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .column:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    }

    .column ul {
      padding-left: 20px;
      margin: 0;
    }

    .column li {
      margin-bottom: 12px;
      list-style: none;
      position: relative;
      padding-left: 20px;
    }

    .column li::before {
      content: "•";
      color: #f89c1c;
      font-size: 20px;
      position: absolute;
      left: 0;
      top: 0;
    }

    @media (max-width: 768px) {
      .grid2 {
        grid-template-columns: 1fr;
      }
      .heading {
        font-size: 28px;
      }
    }


.section-outer {padding: 40px 0px; background:#f8f7f7}
 .section {
      padding:0px 0px 0px;
      max-width: 1200px;
      margin: auto;
    }

    .section h2 {
      font-size: 32px;
      margin-bottom: 0px; color: #000000; padding: 0px;
    }

    .section h2 span {
      color: #f58220;
    }

    .section p {
      font-size: 16px;
      line-height: 1.6;
      margin-bottom: 30px;
      color: #444;
    }

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

    .company-item {
      background: white;
      padding: 15px 20px;
      border-left: 4px solid #f58220;
      border-radius: 6px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.06);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .company-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 16px rgba(0,0,0,0.12);
    }

    @media (max-width: 768px) {
      .section h2 {
        font-size: 26px;
      }

      .section p {
        font-size: 15px;
      }
    }
#footer-outer {
background:#e5ebe8;
    padding: 20px 20px;
    text-align: center;
  }

#footer-outer img{
display: block;
    text-align: center;
    margin: 0 auto;
  }



  .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: #B92032;
    color: #fff;
    padding: 14px 50px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
   
  }

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

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


  .profile-title {
      text-align: center;
      font-size: 2rem;
      font-weight: 700;
      color: #2c3e50;
      margin-bottom: 2rem;
    }

    .grid-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 1.5rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    .card {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      transition: transform 0.3s;
    }

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

    .card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }

    .card-content {
      padding: 1rem;
    }

    .card-title {
      font-size: 1.2rem;
      color: #FF5B43;
      font-weight: bold;
      margin-bottom: 0.75rem;
    }

    .main-text {
      font-size: 0.95rem;
      color: #333;
      margin-bottom: 0.5rem;
    }

    .read-more {
      display: inline-block;
      color: #2980b9;
      font-size: 0.9rem;
      cursor: pointer;
      margin-top: 0.5rem;
      font-weight: 500;
    }

    .full-content {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.6s ease;
      font-size: 0.9rem;
      color: #555;
      margin-top: 0.5rem;
      line-height: 1.5;
    }

    .full-content.open {
      max-height: 2000px;
    }

    ul {
      padding-left: 1.2rem;
      margin: 0;
    }

    li {
      margin-bottom: 5px;
    }
