
    * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Modern CSS Reset ve Temel Stiller */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary-gradient: linear-gradient(135deg, #6e7488 0%, #9ca5c7 100%);
  --secondary-gradient: linear-gradient(135deg, #848a9a 0%, #b0b6c8 100%);
  --accent-gradient: linear-gradient(135deg, #a89bff 0%, #7eaaff 100%);
  --deep-blue-gradient: linear-gradient(135deg, #5b6d8e 0%, #8395b8 50%, #a6b8d9 100%);
  --ocean-gradient: linear-gradient(135deg, #6592e6 0%, #8be6eb 100%);

  --glass-bg: rgba(160, 165, 180, 0.7);
  --glass-border: rgba(180, 180, 200, 0.35);

  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.95);
  --text-muted: rgba(255, 255, 255, 0.8);

  --shadow-light: 0 8px 32px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 16px 48px rgba(0, 0, 0, 0.18);
  --shadow-heavy: 0 24px 64px rgba(0, 0, 0, 0.28);

  --border-radius: 24px;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}


body {
  
  line-height: 1.6;
  overflow-x: hidden;
  background: var(--deep-blue-gradient);
}

/* Popup Overlay Styles */
.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 15, 35, 0.85);
  backdrop-filter: blur(15px);
  z-index: 9999;
  animation: fadeIn 0.3s ease-out;
}

.popup-box {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--glass-bg);
  backdrop-filter: blur(25px);
  border: 1px solid var(--glass-border);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-heavy);
  max-width: 90%;
  max-height: 90%;
  overflow: auto;
  color: var(--text-primary);
  animation: scaleIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.popup-box::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--ocean-gradient);
  border-radius: calc(var(--border-radius) + 2px);
  z-index: -1;
  opacity: 0.6;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 25px;
  cursor: pointer;
  font-size: 32px;
  color: var(--text-secondary);
  transition: var(--transition);
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.close-btn:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg) scale(1.1);
  box-shadow: var(--shadow-light);
}

/* Main Content Styles */
.main-content {
  background: var(--deep-blue-gradient);
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.main-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 15% 85%, rgba(59, 130, 246, 0.4) 0%, transparent 50%),
    radial-gradient(circle at 85% 15%, rgba(147, 197, 253, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(6, 182, 212, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

.main-content::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(255,255,255,0.04) 1px, transparent 1px),
    radial-gradient(circle at 75% 75%, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  animation: float 25s ease-in-out infinite;
  pointer-events: none;
}

/* Hero Section */
.hero-section {
  padding: 6rem 0;
  position: relative;
  z-index: 2;
}

.hero-banner {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-heavy);
  transition: var(--transition);
  background: var(--glass-bg);
  backdrop-filter: blur(25px);
  border: 1px solid var(--glass-border);
  position: relative;
}

.hero-banner::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: var(--ocean-gradient);
  border-radius: 33px;
  z-index: -1;
  opacity: 0.7;
}

.hero-banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.8s ease;
}

.hero-banner:hover::after {
  left: 100%;
}

.hero-banner:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 35px 90px rgba(30, 60, 114, 0.4);
}

.banner-img {
  width: 100%;
  height: auto;
  transition: var(--transition);
  filter: brightness(1.1) contrast(1.15) saturate(1.1);
}

.hero-banner:hover .banner-img {
  transform: scale(1.05);
}

/* Carousel Section */
.carousel-section {
  padding: 4rem 0;
  position: relative;
  z-index: 2;
}

.modern-carousel-wrapper {
  border-radius: 35px;
  overflow: hidden;
  box-shadow: var(--shadow-heavy);
  background: var(--glass-bg);
  backdrop-filter: blur(25px);
  border: 1px solid var(--glass-border);
  position: relative;
}

.modern-carousel-wrapper::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: var(--ocean-gradient);
  border-radius: 38px;
  z-index: -1;
  opacity: 0.6;
}

.carousel-img {
  height: 70vh;
  object-fit: cover;
  transition: var(--transition);
  filter: brightness(0.95) contrast(1.2) saturate(1.1);
}

.carousel-item.active .carousel-img {
  animation: zoomIn 1.2s ease-out;
}

.carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 15, 35, 0.8) 0%,
    rgba(30, 60, 114, 0.4) 50%,
    rgba(15, 15, 35, 0.8) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-content {
  text-align: center;
  color: white;
  max-width: 750px;
  padding: 2.5rem;
}

.carousel-title {
  font-size: clamp(2.2rem, 5.5vw, 4.5rem);
  
  margin-bottom: 1.5rem;
   font-weight: 900;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, #ffffff, #dbeafe, #93c5fd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}
.carousel-subtitle {
  font-size: clamp(1.5rem, 3.2vw, 2.2rem);
  font-weight: 700;
  color: #ffffff;
  text-shadow: 
    2px 2px 8px rgba(0, 0, 0, 0.5),
    0 0 10px rgba(0, 0, 0, 0.25);
  opacity: 1;
  letter-spacing: 0.3px;
}


/* Custom Carousel Controls */
.custom-indicators {
 
  z-index: 10;
}

.custom-indicators li {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  margin: 0 12px;
  background: rgba(255,255,255,0.3);
  transition: var(--transition);
  border: 2px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(5px);
}

.custom-indicators li.active {
  background: var(--accent-gradient);
  transform: scale(1.5);
  box-shadow: 0 0 25px rgba(79, 172, 254, 0.8);
  border-color: rgba(255,255,255,0.8);
}

.custom-control {
  width: 75px;
  height: 75px;
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.custom-control:hover {
  background: rgba(255,255,255,0.25);
  transform: scale(1.2);
  box-shadow: var(--shadow-medium);
  border-color: rgba(255,255,255,0.3);
}

.custom-control-prev-icon,
.custom-control-next-icon {
  filter: brightness(0) invert(1);
  width: 28px;
  height: 28px;
}

/* Info Cards Section */
.info-cards-section {
  padding: 5rem 0;
  position: relative;
  z-index: 2;
}

.section-title {
  font-size: clamp(2.8rem, 6.5vw, 4.5rem);
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 12px rgba(0,0,0,0.6);
  background: linear-gradient(135deg, #ffffff, #dbeafe, #93c5fd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  letter-spacing: -0.02em;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 5px;
  background: var(--accent-gradient);
  border-radius: 3px;
  box-shadow: 0 0 20px rgba(79, 172, 254, 0.5);
}
.section-subtitle {
  font-size: clamp(1.2rem, 2.8vw, 1.6rem);
  color: var(--text-secondary);
  margin-bottom: 4rem;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
   font-weight: 600;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.25);
  line-height: 1.7;
}

.info-card {
  background: var(--glass-bg);
  backdrop-filter: blur(25px);
  border: 1px solid var(--glass-border);
  border-radius: 30px;
  padding: 3.5rem 2.5rem;
  text-align: center;
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--ocean-gradient);
  border-radius: 30px 30px 0 0;
}

.info-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  transition: left 0.7s ease;
}

.info-card:hover::after {
  left: 100%;
}

.info-card:hover {
  transform: translateY(-18px) scale(1.04);
  box-shadow: var(--shadow-heavy);
  border-color: rgba(255,255,255,0.3);
}

.card-icon {
  font-size: 4rem;
  margin-bottom: 2.5rem;
  transition: var(--transition);
  position: relative;
}

.card-1 .card-icon { 
  color: #60a5fa;
  filter: drop-shadow(0 0 25px rgba(96, 165, 250, 0.6));
}
.card-2 .card-icon { 
  color: #34d399;
  filter: drop-shadow(0 0 25px rgba(52, 211, 153, 0.6));
}
.card-3 .card-icon { 
  color: #a78bfa;
  filter: drop-shadow(0 0 25px rgba(167, 139, 250, 0.6));
}

.info-card:hover .card-icon {
  transform: scale(1.4) rotate(20deg);
  animation: pulse 1.2s ease-in-out infinite alternate;
}

.card-title {


  font-size: 2.2rem;
  font-weight: 800;
  color: #111;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.15);


  
  margin-bottom: 1.2rem;

  letter-spacing: -0.01em;
}

.card-text {

    font-size: 1.4rem;
  font-weight: 600;
  color: #222;


  line-height: 1.8;

}

/* Timeline Section */
.important-dates-section {
  padding: 5rem 0;
  position: relative;
  z-index: 2;
}

.timeline {
  position: relative;
  padding: 3rem 0;
  max-width: 1100px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 5px;
  background: var(--ocean-gradient);
  transform: translateX(-50%);
  border-radius: 3px;
  box-shadow: 0 0 25px rgba(59, 130, 246, 0.6);
}

.timeline-item {
  position: relative;
  margin: 4.5rem 0;
  display: flex;
  align-items: center;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-marker {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--ocean-gradient);
  border: 5px solid rgba(255,255,255,0.9);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  transition: var(--transition);
  box-shadow: 0 0 25px rgba(59, 130, 246, 0.7);
}

.timeline-content {
  background: var(--glass-bg);
  backdrop-filter: blur(25px);
  border: 1px solid var(--glass-border);
  border-radius: 25px;
  padding: 3rem;
  margin: 0 3.5rem;
  width: calc(50% - 3.5rem);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.timeline-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--ocean-gradient);
  border-radius: 25px 25px 0 0;
}

.timeline-content h4 {


    font-weight: 800;
  color: #111;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.15);

  
  font-size: 1.7rem;

  margin-bottom: 1rem;

  letter-spacing: -0.01em;
}

.timeline-content p {

  color: #222;
  font-weight: 600;
  font-size: 1.2rem;
 
  margin: 0;
 
  letter-spacing: 0.01em;
}

.timeline-item:hover .timeline-marker {
  transform: translateX(-50%) scale(1.6);
  animation: pulse 1.2s ease-in-out infinite alternate;
  box-shadow: 0 0 35px rgba(59, 130, 246, 0.9);
}

.timeline-item:hover .timeline-content {
  transform: scale(1.1);
  box-shadow: var(--shadow-heavy);
  border-color: rgba(255,255,255,0.3);
}



.btn-primary-custom, .btn-secondary-custom {
  font-weight: 800;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
  letter-spacing: 0.5px;

  padding: 1.4rem 3rem;
  border-radius: 50px;

  font-size: 1.2rem;
  text-decoration: none;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
 
}

.btn-primary-custom {
  background: var(--ocean-gradient);
  color: white;
  box-shadow: var(--shadow-medium);
}

.btn-secondary-custom {
  background: var(--glass-bg);
  color: var(--text-primary);
  border: 2px solid var(--glass-border);
  backdrop-filter: blur(15px);
}

.btn-primary-custom::before,
.btn-secondary-custom::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.6s ease;
}

.btn-primary-custom:hover::before,
.btn-secondary-custom:hover::before {
  left: 100%;
}

.btn-primary-custom:hover, .btn-secondary-custom:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-heavy);
  color: white;
  text-decoration: none;
}

.btn-primary-custom:hover {
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
}

.btn-secondary-custom:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.4);
}

/* Flag Counter Section */
.flag-counter-section {
  padding: 3rem 0;
  position: relative;
  z-index: 2;
}

.flag-counter-wrapper {
  background: var(--glass-bg);
  backdrop-filter: blur(25px);
  border-radius: 25px;
  padding: 3rem;
  border: 1px solid var(--glass-border);
  transition: var(--transition);
  display: inline-block;
  position: relative;
}

.flag-counter-wrapper::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--ocean-gradient);
  border-radius: 27px;
  z-index: -1;
  opacity: 0.3;
}

.flag-counter-wrapper:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-medium);
  border-color: rgba(255,255,255,0.3);
}

/* Animation Keyframes */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleIn {
  from { 
    opacity: 0; 
    transform: translate(-50%, -50%) scale(0.8); 
  }
  to { 
    opacity: 1; 
    transform: translate(-50%, -50%) scale(1); 
  }
}

@keyframes zoomIn {
  from { transform: scale(1.3); opacity: 0.7; }
  to { transform: scale(1); opacity: 1; }
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(2deg); }
}

@keyframes pulse {
  0% { transform: scale(1); }
  100% { transform: scale(1.15); }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-120px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(120px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInUp {
  from { opacity: 0; transform: translateY(120px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(60px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  animation: fadeInUp 1.2s ease-out forwards;
}

.animate-fade-in-up {
  opacity: 0;
  transform: translateY(60px);
  transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-fade-in-up.animate {
  opacity: 1;
  transform: translateY(0);
}

.animate-slide-down {
  opacity: 0;
  animation: fadeInUp 1.2s ease-out 0.4s forwards;
}

.animate-slide-in-left {
  opacity: 0;
  transform: translateX(-120px);
  transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-slide-in-left.animate {
  opacity: 1;
  transform: translateX(0);
}

.animate-slide-in-right {
  opacity: 0;
  transform: translateX(120px);
  transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-slide-in-right.animate {
  opacity: 1;
  transform: translateX(0);
}

.animate-slide-in-up {
  opacity: 0;
  transform: translateY(120px);
  transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-slide-in-up.animate {
  opacity: 1;
  transform: translateY(0);
}

.animate-fade-in {
  opacity: 0;
  transition: all 1.2s ease-out;
}

.animate-fade-in.animate {
  opacity: 1;
}

.animate-fade-in-delay {
  opacity: 0;
  transition: all 1.2s ease-out 0.6s;
}

.animate-fade-in-delay.animate {
  opacity: 1;
}

.animate-scale-in {
  opacity: 0;
  transform: scale(0.8);
  transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-scale-in.animate {
  opacity: 1;
  transform: scale(1);
}

.animate-timeline-1 {
  opacity: 0;
  transform: translateX(-180px);
  transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-timeline-1.animate {
  opacity: 1;
  transform: translateX(0);
}

.animate-timeline-2 {
  opacity: 0;
  transform: translateX(180px);
  transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}

.animate-timeline-2.animate {
  opacity: 1;
  transform: translateX(0);
}

.animate-timeline-3 {
  opacity: 0;
  transform: translateX(-180px);
  transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.8s;
}

.animate-timeline-3.animate {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .timeline-content {
    margin: 0 2.5rem;
    width: calc(50% - 2.5rem);
  }
}

@media (max-width: 992px) {
  .carousel-img {
    height: 60vh;
  }
  
  .info-card {
    margin-bottom: 2.5rem;
  }
  
  .timeline-content {
    padding: 2.5rem;
  }
}

@media (max-width: 768px) {
  .carousel-img {
    height: 50vh;
  }
  
  .custom-control {
    width: 55px;
    height: 55px;
  }
  
  .timeline::before {
    left: 35px;
  }
  
  .timeline-item {
    flex-direction: row !important;
    padding-left: 80px;
  }
  
  .timeline-marker {
    left: 35px !important;
    transform: translateX(-50%) !important;
  }
  
  .timeline-content {
    width: 100%;
    margin: 0;
  }
  
.cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .btn-primary-custom, .btn-secondary-custom {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  .info-card {
    padding: 3rem 2rem;
  }
}

@media (max-width: 576px) {
  .hero-section, .carousel-section, .info-cards-section, 
  .important-dates-section {
    padding: 3rem 0;
  }
  
  .carousel-img {
    height: 40vh;
  }
  
  .info-card {
    padding: 2.5rem 2rem;
  }
  
  .cta-card {
    padding: 3.5rem 2.5rem;
  }
  
  .timeline-content {
    padding: 2rem;
  }
  
  .timeline-item {
    padding-left: 70px;
  }
  
  .popup-box {
    padding: 2rem;
    margin: 1rem;
  }
  
  .custom-control {
    width: 45px;
    height: 45px;
  }
  
  .custom-control-prev-icon,
  .custom-control-next-icon {
    width: 20px;
    height: 20px;
  }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.08);
  border-radius: 6px;
}

::-webkit-scrollbar-thumb {
  background: var(--ocean-gradient);
  border-radius: 6px;
  border: 2px solid rgba(255,255,255,0.1);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
}

/* Selection Styles */
::selection {
  background: rgba(59, 130, 246, 0.4);
  color: white;
}

::-moz-selection {
  background: rgba(59, 130, 246, 0.4);
  color: white;
}

/* Focus Styles */
button:focus,
a:focus {
  outline: 3px solid rgba(59, 130, 246, 0.6);
  outline-offset: 3px;
}

/* Loading Animation */
.loading {
  opacity: 0;
  animation: fadeInUp 1s ease-out forwards;
}

/* Utility Classes */
.glass-effect {
  background: var(--glass-bg);
  backdrop-filter: blur(25px);
  border: 1px solid var(--glass-border);
}

.gradient-text {
  background: linear-gradient(135deg, #ffffff, #dbeafe, #93c5fd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hover-lift {
  transition: var(--transition);
}

.hover-lift:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-medium);
}

/* Glow Effects */
.glow-blue {
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.4);
}

.glow-cyan {
  box-shadow: 0 0 30px rgba(6, 182, 212, 0.4);
}

/* Backdrop Effects */
.backdrop-blur-strong {
  backdrop-filter: blur(30px);
}

.backdrop-blur-medium {
  backdrop-filter: blur(20px);
}

.backdrop-blur-light {
  backdrop-filter: blur(10px);
}




