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

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

@font-face {
  font-family: 'Taruno';
  src: url('/Fonts/taruno-wide-font/TarunowideMediumitalic-GOPaa.otf') format('opentype');
}

@font-face {
  font-family: 'Sterion-BLLld';
  src: url('/Fonts/sterion-font/SterionItalic-R99PA.ttf') format('truetype');
}

@font-face {
  font-family: 'Struic';
  src: url('/Fonts/struic-font/Struic-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}


@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gradientShift {

  0%,
  to {
    background-position: 0 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
nav a {
  color: #f0f0f0;
}

body {
  font-family: 'Struic', 'Chewy', cursive, sans-serif;
  background-color: #121314;
  width: 99vw;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar,
nav {
  display: flex;
  align-items: center;
}

.navbar {
  background: #1e1e1e;
  border-radius: 8px;
  padding: 10px 20px;
  max-width: 900px;
  margin: auto;
  justify-content: space-between;
  position: fixed;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.brand {
  display: flex;
  align-items: center;
  height: 100%;
}

.brand-logo {
  height: 32px;
  width: auto;
  object-fit: contain;
}

nav {
  gap: 15px;
}

nav a {
  text-decoration: none;
  padding: 5px 10px;
  transition: background 0.3s;
}

nav a:hover {
  background: #333;
  border-radius: 4px;
}

.hamburger {
  display: none;
  width: 36px;
  height: 36px;
  position: relative;
  border: none;
  background: none;
  cursor: pointer;
  z-index: 1100;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger-box {
  width: 36px;
  height: 36px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
  width: 28px;
  height: 4px;
  background-color: #fff;
  border-radius: 4px;
  position: absolute;
  left: 4px;
  transition: background-color 0.3s, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger-inner::before,
.hamburger-inner::after {
  content: "";
  display: block;
  width: 28px;
  height: 4px;
  background-color: #fff;
  border-radius: 4px;
  position: absolute;
  left: 0;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger-inner::before {
  top: -10px;
}

.hamburger-inner::after {
  bottom: -10px;
}

.hamburger.active .hamburger-inner {
  background-color: transparent;
}

.hamburger.active .hamburger-inner::before {
  transform: translateY(10px) rotate(45deg);
}

.hamburger.active .hamburger-inner::after {
  transform: translateY(-10px) rotate(-45deg);
}

#nav-login {
  font-size: 1rem;
  width: auto;
  height: auto;
  margin: 0;
}

/* --- MOBILE NAVIGATION --- */
@media (max-width: 768px) {
  #nav-links {
    display: none;
    position: absolute;
    top: 60px;
    right: 10px;
    left: 10px;
    flex-direction: column;
    background: #1e1e1e;
    padding: 10px;
    border-radius: 8px;
    z-index: 100;
    /* Animation for sliding in from bottom */
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1), transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
  }

  .navbar.nav-open #nav-links {
    display: flex !important;
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
    animation: navSlideIn 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .hamburger {
    display: block;
  }
}

.hero {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  height: calc(100vh - 100px);
}

.hero-title {
  font-family: 'Sterion-BLLld', 'Kirginia', sans-serif;
}

.hero-text {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16vw;
  color: #fff;
}

.hero-text h1 {
  font-size: 5rem;
  margin-bottom: 20px;
}

.year-small {
  font-size: 1.5rem;
  font-weight: 300;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.hero-3d {
  width: 50%;
  height: 100%;
}

.model-iframe {
  width: 100%;
  height: 100%;
}

@media (max-width: 1230px) {
  .hero {
    flex-direction: column;
    justify-content: center;
  }

  .hero-text {
    width: 100%;
    height: auto;
    padding: 20px;
    align-items: center;
    text-align: center;
  }

  .hero-3d {
    display: none;
  }
}

.cta-button {
  position: relative;
  padding: 12px 35px;
  background: #a259ff;
  font-size: 1.5rem;
  width: 14rem;
  font-weight: 700;
  color: #fff;
  border: 3px solid #a259ff;
  border-radius: 8px;
  box-shadow: 0 0 0#a259ff80;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.star-1,
.star-2,
.star-3 {
  position: absolute;
  top: 20%;
  left: 20%;
  width: 25px;
  height: auto;
  filter: drop-shadow(0 0 0#fffdef);
  z-index: -5;
  opacity: 0;
  /* Hide stars by default */
  transition: all 1s cubic-bezier(0.05, 0.83, 0.43, 0.96);
}

.star-2,
.star-3 {
  top: 45%;
  left: 45%;
  width: 15px;
  transition: all 1s cubic-bezier(0, 0.4, 0, 1.01);
}

.star-3 {
  top: 40%;
  left: 40%;
  width: 5px;
}

.star-4 {
  top: 20%;
  left: 40%;
  width: 8px;
  transition: all 0.8s cubic-bezier(0, 0.4, 0, 1.01);
}

.star-4,
.star-5,
.star-6 {
  position: absolute;
  height: auto;
  filter: drop-shadow(0 0 0#fffdef);
  z-index: -5;
  opacity: 0;
  /* Hide stars by default */
}

.star-5 {
  top: 25%;
  left: 45%;
  width: 15px;
  transition: all 0.6s cubic-bezier(0, 0.4, 0, 1.01);
}

.star-6 {
  top: 5%;
  left: 50%;
  width: 5px;
  transition: all 0.8s ease;
}

button:hover {
  background: 0 0;
  color: #a259ff;
  box-shadow: 0 0 25px #a259ff80;
}

button:hover .star-1,
button:hover .star-2 {
  position: absolute;
  top: -80%;
  left: -30%;
  width: 25px;
  height: auto;
  filter: drop-shadow(0 0 10px #fff);
  z-index: 2;
  opacity: 1;
  /* Show stars on hover */
}

button:hover .star-2 {
  top: -25%;
  left: 10%;
  width: 15px;
}

button:hover .star-3,
button:hover .star-4,
button:hover .star-5,
button:hover .star-6 {
  position: absolute;
  top: 55%;
  left: 25%;
  width: 5px;
  height: auto;
  filter: drop-shadow(0 0 10px #fff);
  z-index: 2;
  opacity: 1;
  /* Show stars on hover */
}

button:hover .star-4,
button:hover .star-5,
button:hover .star-6 {
  top: 30%;
  left: 80%;
  width: 8px;
}

button:hover .star-5,
button:hover .star-6 {
  top: 25%;
  left: 115%;
  width: 15px;
}

button:hover .star-6 {
  top: 5%;
  left: 60%;
  width: 5px;
}

.fil0 {
  fill: #fff;
}

.stats-section {
  max-width: 1200px;
  width: 100%;
  padding: 60px 20px;
  text-align: center;
  margin: 1rem auto 2rem;
}

.company-description {
  max-width: 800px;
  margin: 0 auto 60px;
}


.company-description h2,
.profile-cards-section h3,
.contact-container h2 {
  font-family: 'Taruno', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  background: /* rgb(126, 87, 194) */
    linear-gradient(135deg, #f0f0f0 0, #7e57c2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.company-description p {
  font-size: 1.1rem;
  color: silver;
  line-height: 1.8;
  margin-bottom: 20px;
}

.highlight-text {
  color: #7e57c2;
  font-weight: 600;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.stat-card {
  background: rgba(30, 30, 30, 0.8);
  border-radius: 20px;
  padding: 40px 30px;
  border: 1px solid rgba(126, 87, 194, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #7e57c2, #9c7ae8);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(126, 87, 194, 0.2);
  border-color: rgba(126, 87, 194, 0.5);
}

.stat-card:hover::before {
  transform: scaleX(1);
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: #7e57c2;
  margin-bottom: 15px;
  text-shadow: 0 0 20px rgba(126, 87, 194, 0.3);
}

.stat-label {
  font-size: 1.1rem;
  color: silver;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(30, 30, 30, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 20px;
    flex-direction: column;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }

  .hamburger {
    display: flex;
  }

  .navbar {
    padding: 15px 25px;
    width: 90%;
    max-width: 400px;
  }

  .company-description h2 {
    font-size: 2rem;
  }

  .company-description p {
    font-size: 1rem;
  }

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

  .stat-card {
    padding: 30px 20px;
  }

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

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .company-description h2 {
    font-size: 1.8rem;
  }

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

.stat-card {
  animation: fadeInUp 0.6s ease forwards;
}

.stat-card:nth-child(1) {
  animation-delay: 0.1s;
}

.stat-card:nth-child(2) {
  animation-delay: 0.2s;
}

.stat-card:nth-child(3) {
  animation-delay: 0.3s;
}

.stat-card:nth-child(4) {
  animation-delay: 0.4s;
}

.event-card-section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin: 2rem 2rem 8rem;
}

.card-image,
.event-card {
  position: relative;
  overflow: hidden;
}

.event-card {
  background: linear-gradient(145deg, #1a1a2e 0, #16213e 100%);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.05);
  max-width: 400px;
  width: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.card-image {
  height: 280px;
  background: linear-gradient(45deg, #7e57c2, #e91e63, #ff9800);
  background-size: 400% 400%;
  animation: gradientShift 8s ease-in-out infinite;
}

.card-image.has-image {
  background: 0 0;
  animation: none;
}

.background-image {
  z-index: 1;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      rgba(126, 87, 194, 0.3) 0,
      rgba(233, 30, 99, 0.2) 50%,
      rgba(255, 152, 0, 0.3) 100%);
  z-index: 2;
}

.decorative-element,
.ica-logo {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  z-index: 3;
}

.ica-logo {
  top: 20px;
  left: 20px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 8px 16px;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  letter-spacing: 1px;
}

.decorative-element {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.decorative-pattern {
  width: 40px;
  height: 40px;
  background: radial-gradient(circle,
      rgba(255, 255, 255, 0.3) 2px,
      transparent 2px);
  background-size: 8px 8px;
  border-radius: 50%;
}

/* .silhouettes {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 10px;
  padding-bottom: 10px;
  z-index: 3;
}

.silhouette {
  width: 20px;
  height: 30px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 10px 10px 0 0;
}

.silhouette:nth-child(2) {
  height: 25px;
}

.silhouette:nth-child(3) {
  height: 35px;
}

.silhouette:nth-child(4) {
  height: 28px;
} */

.card-content {
  padding: 24px;
  color: #f0f0f0;
}

.date-time {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #b0b0b0;
  font-size: 14px;
  margin-bottom: 16px;
}

.clock-icon {
  width: 16px;
  height: 16px;
  border: 1.5px solid #b0b0b0;
  border-radius: 50%;
  position: relative;
}

.clock-icon::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 50%;
  width: 1px;
  height: 5px;
  background: #b0b0b0;
  transform: translateX(-50%);
}

.event-title {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.2;
}

.event-subtitle {
  color: #7e57c2;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

.event-location {
  color: #b0b0b0;
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 20px;
}

.read-more-btn,
.read-more-btn:hover {
  background: linear-gradient(135deg, #00bcd4, #7e57c2);
  color: #fff;
}

.read-more-btn {
  border: 0;
  padding: 12px 32px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.read-more-btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent);
  transition: left 0.5s;
}

.read-more-btn:hover:before {
  left: 100%;
}

.read-more-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(126, 87, 194, 0.4);
}

@media (max-width: 768px) {
  .event-card {
    max-width: 100%;
    margin: 0 10px;
  }

  .card-image {
    height: 240px;
  }

  .event-title {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .card-content {
    padding: 20px;
  }

  .card-image {
    height: 200px;
  }
}

.profile-cards-section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin: 2rem 2rem 8rem;
}

.profile-cards-section h3 {
  font-size: 5rem;
  width: 100%;
  text-align: left;
  padding-left: 20px;
  color: #fff;
  margin-bottom: 10px;
  margin-top: 3rem;
}

.profile-card {
  width: 320px;
  background: linear-gradient(145deg, #2a2a2a, #1f1f1f);
  border-radius: 24px;
  padding: 16px;
  position: relative;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-card.card-2 {
  padding: 0;
  overflow: hidden;
  height: 500px;
}

.background-image,
.card-background {
  position: relative;
  width: 100%;
  height: 100%;
}

.background-image {
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.content-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent,
      rgba(0, 0, 0, 0.2),
      rgba(0, 0, 0, 0.6));
  padding: 40px 24px 24px;
}

.content-overlay::after,
.content-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.content-overlay::before {
  backdrop-filter: blur(0);
  background: linear-gradient(to bottom,
      rgba(255, 255, 255, 0) 0,
      rgba(255, 255, 255, 0.05) 30%,
      rgba(255, 255, 255, 0.1) 60%,
      rgba(255, 255, 255, 0.15) 100%);
}

.content-overlay::after {
  backdrop-filter: blur(2px);
  background: linear-gradient(to bottom,
      transparent 0,
      rgba(0, 0, 0, 0.1) 40%,
      rgba(0, 0, 0, 0.3) 80%,
      rgba(0, 0, 0, 0.5) 100%);
}

.card-2 .profile-bio,
.card-2 .profile-header,
.card-2 .profile-socials {
  position: relative;
  z-index: 2;
}

.card-2 .profile-bio,
.card-2 .profile-name,
.card-2 .social-item {
  color: #fff !important;
}

.profile-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.profile-image {
  width: 100%;
  height: 300px;
  border-radius: 16px;
  object-fit: cover;
  margin-bottom: 20px;
}

.profile-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.profile-name {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.5px;
}

.profile-bio {
  color: #b0b0b0;
  font-size: 15px;
  line-height: 1.4;
  margin-bottom: 16px;
}

.profile-socials {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.socials-left {
  display: flex;
  gap: 20px;
}

.social-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #b0b0b0;
  font-size: 14px;
}

.social-icon {
  width: 1.2rem;
  height: 1.2rem;
  font-size: 1.2rem;
  opacity: 0.7;
  color: #fff;
}

.follow-btn {
  background: #fff;
  color: #000;
  border: 0;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 5px;
}

.follow-btn:hover {
  background: 0 0;
  color: #000;
  box-shadow: none;
  background: #f0f0f0;
  transform: scale(1.05);
}

.follow-btn:active {
  transform: scale(0.98);
}

@media (max-width: 768px) {
  .profile-cards-section h3 {
    font-size: 3rem;
    text-align: center;
  }

  .profile-card {
    width: 100%;
    max-width: 320px;
  }
}

@media (max-width: 480px) {
  .profile-card {
    padding: 20px;
  }

  .profile-name {
    font-size: 22px;
  }

  .profile-bio {
    font-size: 14px;
  }

  .profile-socials {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .follow-btn {
    align-self: stretch;
    justify-content: center;
  }
}

.contact-us {
  background-color: #1e1e1e;
  padding: 3rem 2rem;
  border-radius: 16px;
  max-width: 800px;
  margin: auto;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
}

.contact-container,
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-container {
  align-items: center;
  text-align: center;
}

.contact-container h2 {
  font-size: 2rem;
  color: #f0f0f0;
}

.contact-container p {
  color: #ccc;
  max-width: 600px;
}

.contact-form {
  width: 100%;
  margin-top: 1rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  background-color: #2a2a2a;
  border: 0;
  border-radius: 10px;
  color: #f0f0f0;
  font-size: 1rem;
  outline: 0;
  box-shadow: inset 0 0 5px rgba(255, 255, 255, 0.05);
}

.send-button {
  background-color: #7e57c2;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border: 0;
  border-radius: 10px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s, box-shadow 0.2s;
}

.send-button:hover {
  background-color: #6c47b5;
  color: #fff;
  box-shadow: 0 6px 14px rgba(126, 87, 194, 0.35);
}

@media (max-width: 860px) {
  .contact-us {
    margin: 2rem;
  }
}

@media (max-width: 600px) {
  .contact-us {
    padding: 2.5rem 1.2rem;
    margin: 1rem;
  }

  .contact-container h2 {
    font-size: 1.5rem;
  }

  .send-button {
    font-size: 0.95rem;
  }
}

.footer {
  background-color: #1e1e1e;
  color: #f0f0f0;
  padding: 3rem 2rem 1rem;
  margin-top: 4rem;
  box-shadow: 0-1px 10px rgba(255, 255, 255, 0.05);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1100px;
  margin: auto;
}

.footer-section {
  flex: 1 1 0;
}

.footer-section h3 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  color: #fff;
}

.footer-section a,
.footer-section p {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.6;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-section a:hover {
  color: #7e57c2;
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.social-icons a {
  color: #ccc;
  font-size: 1.5rem;
  transition: color 0.3s, transform 0.2s;
}

.social-icons a:hover {
  color: #7e57c2;
  transform: scale(1.2);
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  font-size: 1rem;
  color: #888;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 2rem;
}

.footer-bottom span {
  display: block;
  margin-top: 0.3rem;
  color: #aaa;
  font-size: 1rem;
}

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

  .footer-section {
    margin-bottom: 0;
  }

  .social-icons {
    justify-content: center;
  }
}

@keyframes navSlideIn {
  0% {
    opacity: 0;
    transform: translateY(60px) scale(0.95);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}