/* --------------------------------------------------
  GOOGLE FONTS
-------------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&display=swap");
/* --------------------------------------------------
  ROOT VARIABLES
-------------------------------------------------- */
:root {
  --font-primary: "Poppins", sans-serif;
  --font-secondary: "Inter", sans-serif;
  --primary-color: #f36b35;
  --color-bg: #000;
  --black: #fff;
  --sidebar-bg: #242526;
  --color-text: #fff;
  --border-color: #f36b35;
  /* --border-color: #ffffff50;        */
  --logo-size: 160px;
}

/* --------------------------------------------------
  GLOBAL STYLES
-------------------------------------------------- */
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-secondary);
  background-color: var(--color-bg);
  color: var(--color-text);
  margin: 0;
  padding: 0;
}
/* Initially hide the scrollbar but allow scrolling */
body.preload-active {
  overflow: hidden;
  height: 100vh;
}

/* To show the scrollbar after preloading, body will return to normal */
body.scrolling-enabled {
  overflow: scroll; /* Keep scrolling functional */
}

/* Hide scrollbar in webkit browsers (Chrome, Safari, Edge) */
body::-webkit-scrollbar {
  display: none;
}

/* If needed, target specific scrollable elements */
::-webkit-scrollbar {
  width: 0px;
  background: transparent;
}

.site-text {
  color: var(--primary-color) !important;
}
.site-bg {
  background-color: var(--primary-color);
}
.site-bg-main {
  background-color: var(--primary-color);
}
.sidebar-bg {
  background-color: var(--sidebar-bg);
}

/* --------------------------------------------------
  About Bio
-------------------------------------------------- */
.custom-dark-table thead {
  background-color: #000 !important;
}
.custom-dark-table thead th,
.custom-dark-table tbody td {
  background: #212529 !important;
  color: white;
}

.custom-dark-table tbody tr {
  background-color: #242526 !important;
}

.custom-dark-table tbody tr:hover {
  background-color: #343a40 !important;
}
/* --------------------------------------------------
  contact page
-------------------------------------------------- */
.banner-overlay {
  top: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background-color: rgba(0, 0, 0, 0.4); /* semi-transparent overlay */
  z-index: 1;
}

.banner-content {
  padding: 2rem;
  border-radius: 10px;
  max-width: 90%;
}

.breadcrumb a {
  text-decoration: none;
}

@media (max-width: 576px) {
  .banner-content h1 {
    font-size: 1.75rem;
  }

  .banner-content {
    padding: 1rem;
  }
}
/* --------------------------------------------------
  contact page End
-------------------------------------------------- */
.sidebar {
  position: fixed;
  z-index: 99;
  height: 100vh;
  background-color: var(--sidebar-bg);
  padding: 20px;
  color: var(--color-text);
}
.logo-wraper {
  position: relative;
  z-index: 1; /* Ensures content stays above */
}

.logo-wraper::before {
  content: "";
  position: absolute;
  inset: 0; /* shorthand for top: 0; right: 0; bottom: 0; left: 0; */
  background-color: var(--primary-color);
  clip-path: polygon(100% 0, 0% 100%, 0 0);
  z-index: -1; /* Push it behind the content */
}
.soft-tags {
  font-family: var(--font-secondary);
  border-left: 1px solid #fff;
}
.soft-tags-wraper {
  font-family: var(--font-secondary);
}
.singer-title {
  font-size: 36px;
  font-weight: 600;
  font-family: var(--font-secondary);
}
.social-icons a {
  border: 1px solid #ffff;
  width: 35px;
  height: 35px;
  border-radius: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.social-icons a:hover {
  background-color: rgba(255, 255, 255, 0.363);
  color: var(--primary-color) !important;
  border: 1px solid transparent;
  transition: 0.5s ease-in-out;
}
.site-vt-menu li a {
  /* font-weight: bold; */
  font-family: var(--font-secondary);
  padding: 0.7rem 1rem;
  display: block;
  text-decoration: none;
  background: none;
  border: 0;
  transition:
    color 0.15s ease-in-out,
    background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out;
  border-bottom: 1px solid #000;
}
/* Active nav item background */
.site-vt-menu .nav-link.active {
  background-color: var(--primary-color);
  color: #000 !important; /* Adjust text color if needed */
  border-radius: 4px;
}

/* Dropdown hover wrapper */
.dropdown-hover {
  position: relative;
}

/* Dropdown content (hidden by default) */
.dropdown-menu-custom {
  position: absolute;
  left: 100%;
  top: 0;
  min-width: 180px;
  background-color: #232323;
  padding: 0;
  margin: 0;
  list-style: none;
  display: none;
  z-index: 1000;
  border-left: 2px solid var(--primary-color); /* Optional visual indicator */
}

/* Show dropdown on hover */
.dropdown-hover:hover .dropdown-menu-custom {
  display: block;
}

/* Dropdown items styling */
.dropdown-item-custom {
  display: block;
  padding: 10px 15px;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.3s;
}

/* Animate arrow on hover */
.dropdown-hover:hover i.fa-angle-right {
  transform: rotate(90deg);
  transition: transform 0.3s ease;
}

.site-vt-menu a {
  color: #fff !important;
}
.site-vt-menu a:hover {
  color: var(--primary-color) !important;
}
.dropdown-item-custom a:hover {
  background-color: var(
    --primary-color
  ) !important; /* Highlight color on hover */
  color: #000;
}
/* .dropdown-item-custom a.active:hover {
  
} */
.dropdown-item-custom.active {
  color: var(--primary-color) !important;
}
/* .dropdown-menu-custom li.active a {
  color: var(--primary-color);
} */
/* From Uiverse.io by doniaskima */
.btn-one,
.btn-one *,
.btn-one :after,
.btn-one :before,
.btn-one:after,
.btn-one:before {
  border: 0 solid;
  box-sizing: border-box;
}

.btn-one {
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: button;
  background-color: #000;
  background-image: none;
  color: #fff;
  cursor: pointer;
  font-family: var(--font-secondary);
  font-size: 100%;
  font-weight: 900;
  line-height: 1.5;
  margin: 0;
  -webkit-mask-image: -webkit-radial-gradient(#000, #fff);
  padding: 0;
  text-transform: uppercase;
  border: 2px solid var(--border-color);
}

.btn-one:disabled {
  cursor: default;
}

.btn-one:-moz-focusring {
  outline: auto;
}

.btn-one svg {
  display: block;
  vertical-align: middle;
}

.btn-one [hidden] {
  display: none;
}

.btn-one {
  border-radius: 99rem;
  border-width: 2px;
  overflow: hidden;
  padding: 0.8rem 3rem;
  position: relative;
}

.btn-one span {
  display: grid;
  inset: 0;
  place-items: center;
  position: absolute;
  transition: opacity 0.2s ease;
}

.btn-one .marquee {
  --spacing: 7em;
  --start: 0em;
  --end: 7em;
  -webkit-animation: marquee 1s linear infinite;
  animation: marquee 1s linear infinite;
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
  opacity: 0;
  position: relative;
  text-shadow:
    #fff var(--spacing) 0,
    #fff calc(var(--spacing) * -1) 0,
    #fff calc(var(--spacing) * -2) 0;
}

.btn-one:hover .marquee {
  -webkit-animation-play-state: running;
  animation-play-state: running;
  opacity: 1;
}

.btn-one:hover .text {
  opacity: 0;
}

@-webkit-keyframes marquee {
  0% {
    transform: translateX(var(--start));
  }

  to {
    transform: translateX(var(--end));
  }
}

@keyframes marquee {
  0% {
    transform: translateX(var(--start));
  }

  to {
    transform: translateX(var(--end));
  }
}

.site-bg {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    white 33%,
    var(--primary-color) 66%,
    var(--primary-color) 100%
  );
  background-size: 200% 200%;
  animation: wave 4s ease-in-out infinite;
  border-radius: 1rem; /* for rounded-4 look */
}

@keyframes wave {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* --------------------------------------------------
SITE LOGO WRAPPER (standard border)
-------------------------------------------------- */
.site-logo-wrapper {
  width: var(--logo-size);
  height: var(--logo-size);
  border-radius: 50%;
  padding: 5px;
  position: relative;
  border: 3px solid var(--black); /* Standard border */
}

/* Logo image inside the wrapper */
.site-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  display: block;
  position: relative;
  z-index: 1;
}
.social-icons a {
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: var(--primary-color); /* Spotify green as example */
}

/* --------------------------------------------------
  SIDEBAR STYLING
-------------------------------------------------- */
/* Modern Banner CSS - Replace old styles with this */
.banner-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
}

.banner-wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
}

.banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: subtleZoom 20s ease-out forwards;
}

@keyframes subtleZoom {
  0% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
.page-banner {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0.7) 100%
  );
  z-index: 1;
}

.gradient-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(139, 92, 246, 0.15) 0%,
    rgba(59, 130, 246, 0.05) 50%,
    transparent 100%
  );
  z-index: 1;
  pointer-events: none;
}

.container-modern {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
}

.banner-content {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  z-index: 2;
}

.content-inner {
  max-width: 800px;
}

/* Greeting */
.greeting-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease-out;
}

.hello-text {
  font-size: 28px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 2px;
  background: linear-gradient(135deg, #fff, #d53f4b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.accent-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #f36b35, transparent);
}

/* Main Title */
.main-title {
  margin-bottom: 25px;
  animation: fadeInUp 0.8s ease-out 0.1s backwards;
}

.title-line {
  display: block;
  font-size: 28px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 3px;
  margin-bottom: 10px;
  font-family: "Inter", sans-serif;
}

.title-name {
  display: block;
  font-size: clamp(42px, 8vw, 110px);
  font-weight: 800;
  font-family: "Playfair Display", serif;
  background: linear-gradient(135deg, #ffffff 0%, #e0d4ff 40%, #d53f4b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: var(--primary-color);
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Modern Typewriter */
.typewriter-modern {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 50px;
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.musical-note {
  font-size: 24px;
  color: #f36b35;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

.typewriter-modern p {
  font-size: clamp(16px, 4vw, 22px);
  font-family: "Inter", sans-serif;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.3px;
  display: inline;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

/* Stats Grid - Modern Cards */
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 45px;
  animation: fadeInUp 0.8s ease-out 0.3s backwards;
}

.stat-card {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border-radius: 24px;
  padding: 20px 28px;
  min-width: 140px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
}

.stat-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(139, 92, 246, 0.5);
  box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.3);
}

.stat-number {
  font-size: 48px;
  font-weight: 800;
  font-family: "Playfair Display", serif;
  background: linear-gradient(135deg, #fff, #d53f4b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-number span {
  font-size: 28px;
  color: #f36b35;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  color: #a78bfa;
}

.stat-label {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
  letter-spacing: 0.5px;
}

.stat-icon {
  position: absolute;
  bottom: 12px;
  right: 16px;
  font-size: 32px;
  opacity: 0.15;
  color: white;
  transition: all 0.3s;
}

.stat-card:hover .stat-icon {
  opacity: 0.3;
  transform: scale(1.1);
}

/* CTA Button */
.cta-wrapper {
  animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.btn-modern {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 32px;
  background: linear-gradient(135deg, #f36b35, #d53f4b);
  border-radius: 50px;
  color: white;
  font-weight: 600;
  text-decoration: none;
  font-size: 16px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-modern:hover {
  transform: translateY(-3px);
  gap: 16px;
  box-shadow: 0 12px 28px rgba(139, 92, 246, 0.4);
  background: linear-gradient(135deg, #f36b35, #d53f4b);
}

.btn-modern i {
  transition: transform 0.3s;
}

.btn-modern:hover i {
  transform: translateX(5px);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  animation: bounce 2s infinite;
  cursor: pointer;
}

.scroll-indicator i {
  font-size: 14px;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
    opacity: 0.6;
  }
  50% {
    transform: translateX(-50%) translateY(8px);
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .stats-grid {
    gap: 15px;
  }

  .stat-card {
    padding: 15px 20px;
    min-width: 100px;
  }

  .stat-number {
    font-size: 32px;
  }

  .stat-number span {
    font-size: 20px;
  }

  .stat-label {
    font-size: 11px;
  }

  .greeting-wrapper {
    margin-bottom: 10px;
  }

  .hello-text {
    font-size: 20px;
  }

  .accent-line {
    width: 40px;
  }

  .title-line {
    font-size: 20px;
  }

  .typewriter-modern {
    margin-bottom: 30px;
  }

  .btn-modern {
    padding: 12px 24px;
    font-size: 14px;
  }

  .scroll-indicator {
    bottom: 20px;
  }
}

.mobile-menu {
  display: none;
}
@media (max-width: 480px) {
  .mobile-menu {
    display: block;
  }
  .stats-grid {
    gap: 10px;
    flex-wrap: wrap;
  }

  .stat-card {
    padding: 12px 16px;
    min-width: 85px;
  }

  .stat-number {
    font-size: 26px;
  }

  .typewriter-modern p {
    font-size: 14px;
  }

  .musical-note {
    font-size: 18px;
  }
}
/* Slider End  */
/* --------------------------------------------------
Media Query
-------------------------------------------------- */
.decoration-none {
  text-decoration: none;
}
/* --------------------------------------------------
Media Query
-------------------------------------------------- */
.text-purple {
  color: var(--primary-color);
}

/* Oculta la línea de tabs predeterminada */
.nav-tabs {
  border-bottom: none;
  display: flex;
  justify-content: center;
  gap: 10px;
}

/* Estilo individual de cada tab como una card */
.nav-tabs .nav-link {
  background: transparent; /* Changed from #fff */
  border: 1px solid #ddd; /* Optional: gives structure */
  border-radius: 10px;
  padding: 15px 10px;
  color: var(--primary-color);
  transition: all 0.3s ease-in-out;
  height: 100px;
  width: 130px;
}

/* Efecto hover para que parezca una card con elevación */
.nav-tabs .nav-link:hover {
  background: #f8f9fa;
}

/* Card activa */
.nav-tabs .nav-link.active {
  background: var(--primary-color);
  color: #000;
  border-color: var(--primary-color);
  box-shadow: 1px 1px 5px rgba(0, 123, 255, 0.3);
  transform: scale(1.1);
}

/* Contenido de los tabs como una card */
.tab-content {
  margin-top: 30px;
  background: transparent !important; /* Edited from #fff */
  border-radius: 10px;
}

@media (max-width: 776px) {
  .tab-content > .tab-pane {
    display: block;
    opacity: 1;
  }
}

@media (min-width: 992px) {
  /* Mantiene el borde superior en tabs inactivos */
  .tab-pane.accordion-item {
    border-radius: 10px;
    background-color: transparent !important; /* Edited from rgba */
    border: 0px solid var(--primary-color);
  }
}

/* Acordeon */

.accordion-button:not(.collapsed) {
  color: black;
  background-color: var(--primary-color);
}

.accordion-button {
  background-color: #f8f9fa;
  color: black;
}

/* Mantiene la flecha original de Bootstrap pero cambia su color */
.accordion-button::after {
  filter: brightness(0);
  /* Flecha negra por defecto */
}

/* Flecha blanca cuando el acordeón está activo */
.accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
  /* Invierte el color de negro a blanco */
}

.accordion-button:focus {
  box-shadow: none !important;
}

.accordion-body {
  background-color: transparent !important; /* Edited from rgba */
  border: 0;
  border-radius: 14px;
}

.mobile-menu-button {
  border-radius: 50%;
  background: var(--primary-color);
  border-color: var(--primary-color);
  width: 50px;
  height: 50px;
  border: 1px solid var(--primary-color);
  position: relative;
}
/* Album Loader */
.loader {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  margin: -20px 0 0 -20px;
  border: 4px solid #ccc;
  border-top-color: #333;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  z-index: 10;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.card-item {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
  display: none; /* fallback to ensure it's hidden */
}

.card-item.show {
  display: block !important; /* override if needed */
  opacity: 1;
  transform: translateY(0);
}

/* PRELOADER STYLES */
/* PRELOADER STYLES */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000; /* or your theme background */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Preloader Image */
#preloader img {
  width: 400px; /* adjust as needed */
  height: auto;
  object-fit: contain;
}
/* Hide scrollbar and prevent scroll when preloader active */
body.preload-active {
  overflow: hidden;
  height: 100vh;
}

.call-to-action {
  text-align: end;
}

/* --------------------------------------------------
cursor CSS
-------------------------------------------------- */

.cursor-modern {
  display: inline-block;
  width: 3px;
  height: 28px;
  background: linear-gradient(180deg, #f36b35, #d53f4b);
  margin-left: 4px;
  animation: blink 0.8s infinite;
  vertical-align: middle;
}
.cursor {
  position: fixed;
  left: 0;
  top: 0;
  width: 3px;
  height: 3px;
  background-color: var(--primary-color); /* Dot color */
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: all 0.15s ease;
  will-change: transform;
  box-shadow: 0 0 0 1px white;
}

.cursor::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  border: 2px solid rgba(255, 255, 255, 0.5); /* Lighter, more visible ring */
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.2s ease;
  z-index: 0; /* Lower than the center dot */
}

/* Outlined Text - Right aligned with your colors */
.outlined-text-right {
  font-size: 130px;
  font-weight: 800;
  font-family: "Playfair Display", serif;
  background: linear-gradient(135deg, #f36b35, #f36b35, #d53f4b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-stroke: 2px rgba(243, 107, 53, 0.4);
  position: absolute;
  top: -45px;
  right: -1px;
  z-index: 0;
  opacity: 0.15;
  white-space: nowrap;
  letter-spacing: 2px;
}

/* Outlined Text - Left aligned with your colors */
.outlined-text {
  font-size: 130px;
  font-weight: 800;
  font-family: "Playfair Display", serif;
  background: linear-gradient(135deg, #f36b35, #f36b35, #d53f4b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-stroke: 2px rgba(243, 107, 53, 0.4);
  position: absolute;
  top: -45px;
  left: -1px;
  z-index: 0;
  opacity: 0.15;
  white-space: nowrap;
  letter-spacing: 2px;
}

/* Solid Text (appears above outlined) */
.solid-text {
  font-size: 60px;
  font-weight: 700;
  font-family: "Playfair Display", serif;
  background: linear-gradient(135deg, #f36b35, #d53f4b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  z-index: 1;
  letter-spacing: 1px;
}

/* Section Title Container */
.section-title {
  position: relative;
  min-height: 100px;
  margin-bottom: 30px;
}

/* For text-end alignment */
.section-title.text-end {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .outlined-text,
  .outlined-text-right {
    font-size: 100px;
    top: -35px;
  }

  .solid-text {
    font-size: 48px;
  }
}

@media (max-width: 768px) {
  .outlined-text,
  .outlined-text-right {
    font-size: 60px;
    top: -25px;
  }

  .solid-text {
    font-size: 32px;
  }
}

@media (max-width: 576px) {
  .outlined-text,
  .outlined-text-right {
    font-size: 45px;
    top: -18px;
  }

  .solid-text {
    font-size: 24px;
  }
}
/* --------------------------------------------------
Media Query
-------------------------------------------------- */
@media screen and (max-width: 768px) {
  .soft-tags-wraper {
    display: none;
  }
  .banner-content {
    padding-left: 55px;
  }
  .sidebar {
    display: none;
  }
  .offcanvas {
    background-color: var(--primary-color) !important;
  }
  .mobile-sidebar {
    display: block !important;
  }
  .mobile-sidebar {
    position: relative !important;
  }
  .logo-wraper {
    position: static;
  }
  .banner-content {
    text-align: center;
  }
  .banner-main-title {
    font-size: 80px;
    font-family: var(--font-secondary);
  }
  .mobile-menu {
    display: block;
  }
  .dropdown-menu-custom {
    position: absolute;
    left: 100%;
    top: 40px;
    left: 148px;
  }
  .outlined-text {
    font-size: 65px;
    top: -26px;
  }
  .outlined-text-right {
    font-size: 65px;
    top: -26px;
  }
  .solid-text {
    font-size: 30px;
    top: -5px;
  }
  .accordion-button {
    border: 0;
  }
  .accordion-button.collapsed {
    background-color: var(--primary-color);
    border: 0;
  }
  .logo-wraper::before {
    background-color: transparent !important;
  }
  .wave-text {
    font-size: 1em;
  }
  .about-img {
    height: 100%;
  }
  .call-to-action {
    text-align: center;
    position: relative;
    right: 70px;
    top: 3px;
  }
  .bg-action-box {
    text-align: center;
    padding-top: 30px;
  }
  .cursor {
    display: none;
  }
}

/* Home about Section */
/* Modern About Section Styles */
.modern-about {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0c12 0%, #111827 100%);
}

/* Section Badge */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(139, 92, 246, 0.15);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
  border: 1px solid rgba(139, 92, 246, 0.3);
}

.badge-icon {
  font-size: 14px;
  color: #f36b35;
}

.section-badge {
  font-size: 14px;
  color: #d53f4b;
  letter-spacing: 1px;
}

/* Modern Title */
.modern-about-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  font-family: "Playfair Display", serif;
  margin-bottom: 20px;
}

.modern-about-title .gradient-text {
  background: linear-gradient(135deg, #f36b35, #d53f4b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.title-underline {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #f36b35, transparent);
  margin-top: 12px;
}

/* Intro Text */
.about-intro {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 30px;
  font-weight: 500;
}

/* Bio Cards */
.bio-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 30px;
}

.bio-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.bio-card:hover {
  background: rgba(139, 92, 246, 0.08);
  border-color: rgba(139, 92, 246, 0.3);
  transform: translateX(8px);
}

.bio-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(
    135deg,
    rgba(139, 92, 246, 0.2),
    rgba(99, 102, 241, 0.1)
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #f36b35;
}

.bio-text h4 {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 6px;
}

.bio-text p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.4;
  margin: 0;
}

/* Career Section */
.career-section {
  margin: 30px 0;
  padding: 20px;
  background: rgba(139, 92, 246, 0.05);
  border-radius: 20px;
  border-left: 3px solid #f36b35;
}

.career-title {
  font-size: 18px;
  font-weight: 600;
  color: #d53f4b;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.career-title i {
  font-size: 20px;
  color: #f36b35;
}

.career-text {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

.career-text strong {
  color: #d53f4b;
}

/* About CTA */
.about-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.btn-about {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 28px;
  background: linear-gradient(135deg, #f36b35, #d53f4b);
  border-radius: 40px;
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-about:hover {
  transform: translateY(-2px);
  gap: 16px;
  background: linear-gradient(135deg, #f36b35, #d53f4b);
  color: white;
}

.signature-line {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 2px;
}

/* Modern Image Wrapper */
.modern-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.image-frame {
  position: relative;
  display: inline-block;
}

.about-main-img {
  border-radius: 30px;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.4));
  border: 2px solid rgba(139, 92, 246, 0.3);
  transition: all 0.4s ease;
  max-width: 100%;
}

.about-main-img:hover {
  transform: scale(1.02);
  border-color: rgba(139, 92, 246, 0.6);
}

/* Floating Cards */
.floating-card {
  position: absolute;
  background: rgba(18, 22, 35, 0.9);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(139, 92, 246, 0.3);
  animation: float 3s ease-in-out infinite;
}

.experience-card {
  top: 10%;
  left: -20px;
}

.award-card {
  bottom: 15%;
  right: -20px;
  animation-delay: 1.5s;
}

.floating-icon {
  width: 40px;
  height: 40px;
  background: rgba(139, 92, 246, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #f36b35;
}

.floating-text {
  display: flex;
  flex-direction: column;
}

.floating-text .number {
  font-size: 20px;
  font-weight: 700;
  color: white;
  line-height: 1;
}

.floating-text .label {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.6);
}

/* Music Notes Decoration */
.music-notes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.music-notes i {
  position: absolute;
  font-size: 20px;
  color: rgba(139, 92, 246, 0.2);
  animation: floatNote 4s ease-in-out infinite;
}

.note-1 {
  top: 15%;
  right: 5%;
  animation-delay: 0s;
}

.note-2 {
  bottom: 20%;
  left: 0%;
  animation-delay: 1s;
  font-size: 16px;
}

.note-3 {
  top: 40%;
  right: 10%;
  animation-delay: 2s;
  font-size: 14px;
}

/* Animations */
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes floatNote {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.2;
  }
  50% {
    transform: translateY(-15px) rotate(10deg);
    opacity: 0.5;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .modern-about {
    padding: 50px 0;
  }

  .bio-card {
    padding: 12px 16px;
  }

  .bio-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .floating-card {
    padding: 8px 12px;
  }

  .experience-card {
    left: -10px;
    top: 5%;
  }

  .award-card {
    right: -10px;
    bottom: 10%;
  }

  .about-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 576px) {
  .bio-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .bio-icon {
    margin-bottom: 8px;
  }

  .floating-card {
    display: none;
  }
}

/* Slider Arrow Css */
/* Custom Slider Arrows Container */
.custom-arrows-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

/* Custom Prev & Next Arrow Buttons */
.custom-prev,
.custom-next {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #f36b35, #d53f4b);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(243, 107, 53, 0.3);
}

/* Arrow Icons inside buttons */
.custom-prev i,
.custom-next i {
  color: white;
  font-size: 20px;
  transition: all 0.3s ease;
}

/* Hover Effect */
.custom-prev:hover,
.custom-next:hover {
  transform: scale(1.1);
  background: linear-gradient(135deg, #d53f4b, #f36b35);
  box-shadow: 0 6px 20px rgba(243, 107, 53, 0.5);
}

.custom-prev:hover i,
.custom-next:hover i {
  transform: scale(1.1);
}

/* Active/Click Effect */
.custom-prev:active,
.custom-next:active {
  transform: scale(0.95);
}

/* Disabled State */
.custom-prev.slick-disabled,
.custom-next.slick-disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
  pointer-events: none;
}

/* Slick Arrow Override (if needed) */
.slick-prev:before,
.slick-next:before {
  display: none !important;
}

/* Optional: Remove default slick arrows */
.slick-prev,
.slick-next {
  display: none !important;
}

/* Modern Sound Section Styles */
.modern-sound-section {
  padding: 60px 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(243, 107, 53, 0.03) 100%
  );
  position: relative;
  overflow: hidden;
}

/* Section Title Modern */
.section-title-modern {
  text-align: center;
  margin-bottom: 50px;
}

.section-subtitle {
  font-size: 14px;
  letter-spacing: 3px;
  color: #f36b35;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 15px;
  font-weight: 600;
}

.section-main-title {
  font-size: clamp(32px, 5vw, 55px);
  font-family: "Playfair Display", serif;
  margin-bottom: 15px;
}

.title-outline {
  background: linear-gradient(135deg, #f36b35, #f36b35);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-stroke: 2px rgba(243, 107, 53, 0.3);
  font-weight: 800;
}

.title-gradient {
  background: linear-gradient(135deg, #f36b35, #d53f4b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 800;
}

.title-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #f36b35, #d53f4b);
  margin: 15px auto;
  border-radius: 3px;
}

.section-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
}

/* Video Cards */
.video-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}

.video-card:hover {
  transform: translateY(-10px);
  border-color: rgba(243, 107, 53, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.video-wrapper {
  position: relative;
  overflow: hidden;
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
}

.video-card:hover .video-wrapper iframe {
  transform: scale(1.05);
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.video-card:hover .video-overlay {
  opacity: 1;
}

.play-btn {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #f36b35, #d53f4b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 2s infinite;
}

.play-btn i {
  color: white;
  font-size: 24px;
  margin-left: 4px;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(243, 107, 53, 0.5);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 0 0 15px rgba(243, 107, 53, 0);
  }
}

/* Video Info */
.video-info {
  padding: 18px 20px;
  text-align: center;
}

.video-title {
  font-size: 18px;
  font-weight: 600;
  color: white;
  margin-bottom: 5px;
  transition: color 0.3s ease;
}

.video-card:hover .video-title {
  color: #f36b35;
}

.video-category {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Modern Button */
.btn-sound-modern {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 35px;
  background: linear-gradient(135deg, #f36b35, #d53f4b);
  border-radius: 50px;
  color: white;
  font-weight: 600;
  text-decoration: none;
  font-size: 16px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
}

.btn-sound-modern::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 ease;
}

.btn-sound-modern:hover::before {
  left: 100%;
}

.btn-sound-modern:hover {
  transform: translateY(-3px);
  gap: 15px;
  box-shadow: 0 10px 25px rgba(243, 107, 53, 0.4);
}

.btn-sound-modern i {
  transition: transform 0.3s ease;
}

.btn-sound-modern:hover i {
  transform: translateX(5px);
}

.musical-icon {
  opacity: 0;
  width: 0;
  transition: all 0.3s ease;
}

.btn-sound-modern:hover .musical-icon {
  opacity: 1;
  width: auto;
  margin-left: 5px;
}

/* Responsive */
@media (max-width: 768px) {
  .modern-sound-section {
    padding: 40px 0;
  }

  .video-title {
    font-size: 16px;
  }

  .btn-sound-modern {
    padding: 12px 28px;
    font-size: 14px;
  }

  .play-btn {
    width: 45px;
    height: 45px;
  }

  .play-btn i {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .video-info {
    padding: 12px 15px;
  }

  .video-title {
    font-size: 14px;
  }
}

/* Modern Gallery Section */
.modern-gallery-section {
  position: relative;
  overflow: hidden;
}

/* Modern Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
  /* margin-top: 40px; */
}

.gallery-item {
  position: relative;
  display: block;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 1 / 1;
}

.gallery-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image-wrapper img {
  transform: scale(1.08);
}

/* Gallery Overlay */
.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(243, 107, 53, 0.9),
    rgba(213, 63, 75, 0.9)
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transition: all 0.3s ease;
  color: white;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  font-size: 32px;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay i {
  transform: scale(1);
}

.gallery-overlay span {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  transform: translateY(10px);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay span {
  transform: translateY(0);
}

/* Modern Gallery Button */
.btn-gallery-modern {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 35px;
  background: linear-gradient(135deg, #f36b35, #d53f4b);
  border-radius: 50px;
  color: white;
  font-weight: 600;
  text-decoration: none;
  font-size: 16px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
}

.btn-gallery-modern::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 ease;
}

.btn-gallery-modern:hover::before {
  left: 100%;
}

.btn-gallery-modern:hover {
  transform: translateY(-3px);
  gap: 15px;
  box-shadow: 0 10px 25px rgba(243, 107, 53, 0.4);
}

.btn-gallery-modern i {
  transition: transform 0.3s ease;
}

.btn-gallery-modern:hover i {
  transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 15px;
  }

  .gallery-overlay i {
    font-size: 24px;
  }

  .gallery-overlay span {
    font-size: 12px;
  }

  .btn-gallery-modern {
    padding: 12px 28px;
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
  }

  .gallery-overlay span {
    display: none;
  }

  .gallery-overlay i {
    font-size: 28px;
  }
}

/* Media Coverage And News */
/* Modern Media Section Styles */
.modern-media-section {
  position: relative;
  overflow: hidden;
}

.media-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  max-width: 600px;
  margin: 15px auto 0;
}

/* Media Card */
.media-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255, 255, 255, 0.05);
  height: 100%;
  position: relative;
}

.media-card:hover {
  transform: translateY(-8px);
  border-color: rgba(243, 107, 53, 0.3);
  box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.4);
}

/* Media Image Wrapper */
.media-image-wrapper {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.media-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.media-card:hover .media-image {
  transform: scale(1.08);
}

/* Media Category Badge */
.media-category {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #f36b35, #d53f4b);
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  backdrop-filter: blur(5px);
  z-index: 1;
}

.media-category i {
  font-size: 10px;
  margin-right: 4px;
}

/* Media Content */
.media-content {
  padding: 20px;
}

/* Media Meta */
.media-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 8px;
}

.media-date {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.media-date i {
  margin-right: 4px;
  font-size: 11px;
}

.media-source {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #f36b35;
  font-weight: 500;
}

.source-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: cover;
}

/* Media Title */
.media-title {
  font-size: 18px;
  font-weight: 600;
  color: white;
  line-height: 1.4;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.media-card:hover .media-title {
  color: #f36b35;
}

/* Media Excerpt */
.media-excerpt {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  margin-bottom: 16px;
}

/* Read More Button */
.media-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #f36b35;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.media-read-more i {
  transition: transform 0.3s ease;
}

.media-read-more:hover {
  gap: 12px;
  color: #d53f4b;
}

.media-read-more:hover i {
  transform: translateX(5px);
}

/* Modern Media Button */
.btn-media-modern {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 35px;
  background: linear-gradient(135deg, #f36b35, #d53f4b);
  border-radius: 50px;
  color: white;
  font-weight: 600;
  text-decoration: none;
  font-size: 16px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
}

.btn-media-modern::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 ease;
}

.btn-media-modern:hover::before {
  left: 100%;
}

.btn-media-modern:hover {
  transform: translateY(-3px);
  gap: 15px;
  box-shadow: 0 10px 25px rgba(243, 107, 53, 0.4);
}

.btn-media-modern i {
  transition: transform 0.3s ease;
}

.btn-media-modern:hover i {
  transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {
  .media-image-wrapper {
    height: 200px;
  }

  .media-content {
    padding: 16px;
  }

  .media-title {
    font-size: 16px;
  }

  .media-excerpt {
    font-size: 13px;
  }

  .btn-media-modern {
    padding: 12px 28px;
    font-size: 14px;
  }

  .media-meta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 576px) {
  .media-image-wrapper {
    height: 180px;
  }

  .media-title {
    font-size: 15px;
  }

  .media-category {
    font-size: 10px;
    padding: 4px 10px;
  }
}

/* Modern Footer Styles */
.modern-footer {
  background: linear-gradient(135deg, #0a0c12 0%, #111827 100%);
  border-top: 1px solid rgba(243, 107, 53, 0.2);
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}

/* Animated gradient line at top */
.modern-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #f36b35, #d53f4b, #f36b35);
  animation: gradientMove 3s ease infinite;
}

@keyframes gradientMove {
  0%,
  100% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
}

/* Footer Main */
.footer-main {
  padding: 50px 0 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Brand Section */
.footer-brand {
  text-align: left;
}

.footer-logo {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 2px solid rgba(243, 107, 53, 0.3);
  transition: transform 0.3s ease;
}

.footer-logo:hover {
  transform: scale(1.05);
  border-color: #f36b35;
}

.footer-name {
  font-size: 20px;
  font-weight: 700;
  color: white;
  margin-bottom: 5px;
  font-family: "Playfair Display", serif;
}

.footer-tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
  letter-spacing: 1px;
}

/* Social Links */
.footer-social {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-link {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
  background: linear-gradient(135deg, #f36b35, #d53f4b);
  transform: translateY(-3px);
  color: white;
  border-color: transparent;
}

/* Footer Links */
.footer-links {
  text-align: left;
}

.footer-title {
  font-size: 18px;
  font-weight: 600;
  color: white;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #f36b35, #d53f4b);
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.footer-links a i {
  font-size: 10px;
  color: #f36b35;
  transition: transform 0.3s ease;
}

.footer-links a:hover {
  color: #f36b35;
  transform: translateX(5px);
}

.footer-links a:hover i {
  transform: translateX(3px);
}

/* Newsletter Section */
.footer-newsletter {
  text-align: left;
}

.newsletter-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 15px;
  line-height: 1.5;
}

.newsletter-form {
  margin-bottom: 20px;
}

.input-group {
  display: flex;
  gap: 10px;
}

.input-group input {
  flex: 1;
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  color: white;
  font-size: 14px;
  transition: all 0.3s ease;
}

.input-group input:focus {
  outline: none;
  border-color: #f36b35;
  background: rgba(255, 255, 255, 0.08);
}

.input-group input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.input-group button {
  padding: 12px 20px;
  background: linear-gradient(135deg, #f36b35, #d53f4b);
  border: none;
  border-radius: 50px;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.input-group button:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(243, 107, 53, 0.4);
}

.input-group button i {
  font-size: 14px;
}

/* Footer Contact */
.footer-contact {
  margin-top: 20px;
}

.footer-contact p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-contact i {
  width: 20px;
  color: #f36b35;
  font-size: 12px;
}

/* Footer Bottom */
.footer-bottom {
  padding: 25px 0 20px;
}

.copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.footer-legal {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 12px;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #f36b35;
}

.separator {
  color: rgba(255, 255, 255, 0.2);
  font-size: 12px;
}

/* Developer Credit */
.developer-credit {
  text-align: center;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.developer-credit small {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
}

.developer-credit a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color 0.3s ease;
}

.developer-credit a:hover {
  color: #f36b35;
}

.developer-credit img {
  vertical-align: middle;
  transition: transform 0.3s ease;
}

.developer-credit a:hover img {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .footer-main {
    padding: 40px 0 30px;
  }

  .footer-brand,
  .footer-links,
  .footer-newsletter {
    text-align: center;
  }

  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-social {
    justify-content: center;
  }

  .footer-links ul {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-legal {
    justify-content: center;
  }

  .copyright {
    text-align: center;
  }

  .input-group {
    max-width: 300px;
    margin: 0 auto;
  }

  .footer-contact {
    text-align: center;
  }

  .footer-contact p {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .footer-legal {
    flex-direction: column;
    gap: 8px;
  }

  .separator {
    display: none;
  }

  .footer-bottom {
    padding: 20px 0 15px;
  }
}

/* Awards Grid Card Styles */
.award-grid-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255, 255, 255, 0.05);
  height: 100%;
  position: relative;
}

.award-grid-card:hover {
  transform: translateY(-8px);
  border-color: rgba(243, 107, 53, 0.3);
  box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.4);
}

.award-image-wrapper {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
}

.award-image {
  width: 100%;
  height: 200px;
  object-fit: contain;
  padding: 20px;
  transition: transform 0.5s ease;
}

.award-grid-card:hover .award-image {
  transform: scale(1.05);
}

.award-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(243, 107, 53, 0.9),
    rgba(213, 63, 75, 0.9)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.award-grid-card:hover .award-overlay {
  opacity: 1;
}

.award-overlay i {
  font-size: 48px;
  color: white;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.award-grid-card:hover .award-overlay i {
  transform: scale(1);
}

.award-content {
  padding: 20px;
  text-align: center;
}

.award-title {
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.award-grid-card:hover .award-title {
  color: #f36b35;
}

.award-category {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
}

.award-organization {
  font-size: 12px;
  color: #f36b35;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 768px) {
  .award-image {
    height: 160px;
    padding: 15px;
  }

  .award-title {
    font-size: 16px;
  }

  .award-category {
    font-size: 12px;
  }

  .award-organization {
    font-size: 11px;
  }
}
