/* ===== Optimized TraduCode CSS ===== */
:root {
  --hue-color: 240;

  --bg: hsl(var(--hue-color), 28%, 12%);
  --cyan: #00e7ff;
  --cyan-glow: 0 0 20px #00e7ff77, 0 0 40px #00e7ffaa;
  --accent-red: #ff4040;
  --text: var(--text-color);
  --radius: 1.25rem;
  --font-family: "Poppins", sans-serif;
  --header-height: 4rem;
}

/* Global Resets */
*,
*::before,
*::after {
  box-sizing: border-box;
}
.main__title {
  font-family: var(--font-family);
  place-self: center;
  padding: 1rem 1rem 1rem;
}
body {
  
  padding: calc(var(--header-height) + 2rem) 0 0 0;
}
.logo {
  max-width: 400px;
  width: 100%;
  filter: drop-shadow(0 0 30px #00e7ff88);
  margin-bottom: 2rem;
  border-radius: var(--radius);
  animation: pulse 6s infinite;
}
.what-is {
  max-width: 600px;
  margin-bottom: 100px;
}


/* Section Styling */
.research-section,
.hero,
.carousel-wrapper {
  text-align: center;
  margin-top: 3rem;
}

.poster-title,
.abstract-title,
.tc-hero__headline,
.tc-slide__text h3 {
  color: var(--cyan);
  margin: 1rem;
}

.research-abstract p,
.gap_description,
.tc-slide__text p,
.main__description {
  font-size: 1rem;
  line-height: 1.6;
  text-align: left;
}

/* Buttons */
.button,
.peek-btn {
    display: block;
    margin: 2rem auto 1rem;
    padding: 0.6rem 1.2rem;
    color: var(--cyan);
    background: transparent;
    border: 1px solid var(--cyan);
    border-radius: var(--radius);
    cursor: pointer;
  
  
}




.button:hover,
.peek-btn:hover {
  background-color: var(--accent-red);
}

/* Quote Blocks */
.quote-block {
  max-width: 700px;
  margin: 3rem auto;
  padding: 1rem;
  background: rgba(0, 231, 255, 0.05);
  border-left: 4px solid var(--cyan);
  border-radius: var(--radius);
  text-align: center;
}

.quote-block blockquote {
  font-style: italic;
  margin: 0;
}

.quote-block cite {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--accent-red);
  font-weight: 600;
}

.section__title {
  font-size: 2rem;
  
  padding-bottom: 10px;
}

/* Hero Section */
.hero__wrap,
.tc-hero,
.tc-slide {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: center;
}



/* Carousel Styling */
.carousel-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.carousel {
  display: flex;
  overflow: visible;
  border-radius: var(--radius);
  border: 2px solid var(--cyan);
  box-shadow: var(--cyan-glow);
  animation: pulse 6s infinite;
}

.slide {
  min-width: 100%;
  padding: 3rem 2rem 4rem;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  transition: opacity 0.5s ease-in-out;
}

.slide.active {
  display: flex;
}
.slide p {
    font-size: 1rem;
    color: var(--text);
    max-width: 750px;
}
.nav-btn {
  background: transparent;
  border: none;
  color: var(--cyan);
  font-size: 2.25rem;
  cursor: pointer;
  transition: transform 0.2s, color 0.2s;
}

.nav-btn:hover {
  color: #fff;
  transform: scale(1.15);
}

/* Peek Panel */
.peek-panel {
  max-width: 680px;
  margin: 1.2rem auto;
  padding: 1.5rem;
  background: #112531;
  border: 1px solid rgba(0, 231, 255, 0.27);
  border-radius: var(--radius);
  display: none;
}

/* Responsive Styling */
@media (max-width: 768px) {
  .tc-hero,
  .tc-slide,
  .hero__wrap {
    flex-direction: column;
  }

  .tc-slide img,
  .tc-hero img {
    margin: 0 auto;
  }
}

/* Glow Animation */
@keyframes pulse {
  0%, 100% { box-shadow: var(--cyan-glow); }
  50% { box-shadow: 0 0 10px #00e7ff44, 0 0 20px #00e7ff88; }
}