/* inCloud S.r.l. - Custom Styles */
/* Modern design with Stripe-like violet/indigo gradients */

/* ===== CSS Variables ===== */
:root {
  /* Primary gradient colors - Stripe-like */
  --gradient-start: #667eea;
  --gradient-mid: #764ba2;
  --gradient-end: #f093fb;

  /* Primary colors */
  --primary: #667eea;
  --primary-dark: #5a67d8;
  --primary-light: #a5b4fc;

  /* Accent colors */
  --accent: #764ba2;
  --accent-light: #9f7aea;

  /* Neutral colors */
  --text-dark: #1a202c;
  --text-muted: #718096;
  --text-light: #f7fafc;
  --bg-light: #f8f9ff;
  --bg-dark: #0f0f23;
  --white: #ffffff;

  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(102, 126, 234, 0.1);
  --shadow-md: 0 8px 30px rgba(102, 126, 234, 0.15);
  --shadow-lg: 0 20px 60px rgba(102, 126, 234, 0.2);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ===== Base Styles ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-dark);
  line-height: 1.7;
  background: var(--white);
  overflow-x: hidden;
}

/* ===== Typography ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
  margin-bottom: 1rem;
  color: var(--text-muted);
}

/* ===== Gradient Text ===== */
.gradient-text {
  background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-mid) 50%, var(--gradient-end) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== Sections ===== */
section {
  padding: 6rem 0;
  position: relative;
}

.section-dark {
  background: var(--bg-dark);
  color: var(--text-light);
}

.section-dark p {
  color: rgba(255, 255, 255, 0.7);
}

.section-gradient {
  background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-mid) 100%);
  color: var(--text-light);
}

.section-gradient p {
  color: rgba(255, 255, 255, 0.9);
}

.section-light {
  background: var(--bg-light);
}

/* ===== Navbar ===== */
.navbar-incloud {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(102, 126, 234, 0.1);
  padding: 1rem 0;
  transition: var(--transition-normal);
}

.navbar-incloud.scrolled {
  box-shadow: var(--shadow-md);
}

.navbar-brand img {
  height: auto;
  max-height: 80px;
  transition: var(--transition-fast);
}

.navbar-brand:hover img {
  transform: scale(1.05);
}

.nav-link {
  font-weight: 500;
  color: var(--text-dark) !important;
  padding: 0.5rem 1rem !important;
  transition: var(--transition-fast);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gradient-start), var(--gradient-mid));
  transition: var(--transition-normal);
  transform: translateX(-50%);
}

.nav-link:hover::after {
  width: 80%;
}

.nav-link:hover {
  color: var(--primary) !important;
}

/* ===== Hero Section ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--bg-dark) 0%, #1a1a3e 50%, var(--gradient-mid) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(240, 147, 251, 0.15) 0%, transparent 40%);
  animation: pulse-bg 8s infinite alternate;
}

@keyframes pulse-bg {
  0% {
    opacity: 0.5;
  }

  100% {
    opacity: 1;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.hero p.lead {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
}

.hero-logo {
  max-width: 280px;
  margin-bottom: 2rem;
  filter: drop-shadow(0 10px 30px rgba(102, 126, 234, 0.4));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

/* ===== Buttons ===== */
.btn-gradient {
  background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-mid) 100%);
  border: none;
  color: var(--text-light);
  padding: 0.875rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition-normal);
  box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
}

.btn-gradient:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(102, 126, 234, 0.6);
  color: var(--text-light);
}

.btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: var(--text-light);
  padding: 0.875rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition-normal);
  background: transparent;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--text-light);
  color: var(--text-light);
  transform: translateY(-3px);
}

/* ===== Cards ===== */
.card-glass {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2rem;
  transition: var(--transition-normal);
}

.card-glass:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.card-service {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  height: 100%;
  transition: var(--transition-normal);
  border: 1px solid rgba(102, 126, 234, 0.1);
  box-shadow: var(--shadow-sm);
}

.card-service:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.card-service .icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  color: var(--text-light);
}

/* ===== Project Cards ===== */
.card-project {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-sm);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card-project:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.card-project .project-header {
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid));
  padding: 2rem;
  text-align: center;
}

.card-project .project-logo {
  max-height: 60px;
  max-width: 200px;
  filter: brightness(0) invert(1);
}

.card-project .project-body {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-project .project-body p {
  flex-grow: 1;
}

/* ===== Feature List ===== */
.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  color: var(--text-muted);
}

.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

/* ===== Why Choose Us ===== */
.why-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  transition: var(--transition-normal);
}

.why-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(10px);
}

.why-item .icon-box {
  width: 60px;
  height: 60px;
  min-width: 60px;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

/* ===== Tech Stack ===== */
.tech-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem;
  transition: var(--transition-normal);
}

.tech-icon:hover {
  transform: translateY(-5px);
}

.tech-icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  margin-bottom: 0.75rem;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: var(--transition-normal);
}

.tech-icon:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* Treat <i> like <img> for tech icons */
.tech-icon i {
  filter: grayscale(100%);
  opacity: 0.7;
  transition: var(--transition-normal);
  display: block;
  margin-bottom: 0.75rem;
}

.tech-icon:hover i {
  filter: grayscale(0%);
  opacity: 1;
}

.tech-icon span {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ===== Contact Form ===== */
.contact-form {
  background: var(--white);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: var(--shadow-md);
}

.contact-form h4 {
  color: var(--text-dark);
  /* Fix invisibility on white background */
}

.form-control {
  border: 2px solid rgba(102, 126, 234, 0.1);
  border-radius: 12px;
  padding: 0.875rem 1.25rem;
  transition: var(--transition-fast);
}


.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.form-label {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

/* ===== Footer ===== */
.footer {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 0 2rem;
}

.footer h5 {
  color: var(--text-light);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer a:hover {
  color: var(--primary-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  margin-top: 3rem;
}

.footer-logo {
  max-height: 60px;
  filter: brightness(0) invert(1);
}

/* ===== Flash Messages ===== */
.alert-flash {
  position: fixed;
  top: 100px;
  right: 20px;
  z-index: 9999;
  min-width: 300px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  animation: slideIn 0.5s ease;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* ===== Animations ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 991.98px) {
  section {
    padding: 4rem 0;
  }

  .hero {
    min-height: auto;
    padding: 8rem 0 4rem;
  }

  .hero-logo {
    max-width: 200px;
  }
}

@media (max-width: 767.98px) {

  .card-service,
  .contact-form {
    padding: 1.5rem;
  }

  .why-item {
    flex-direction: column;
    text-align: center;
  }

  .why-item .icon-box {
    margin: 0 auto;
  }
}

/* ===== Scrollbar ===== */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--gradient-start), var(--gradient-mid));
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

/* ===== NEW ANIMATION STYLES ===== */

/* Scroll Reveal Animation */
.scroll-animate {
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate.animate-in {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Typing Effect */
.typing-text {
  display: inline-block;
  min-width: 200px;
}

.typing-text::after {
  content: '|';
  animation: blink 1s infinite;
  color: var(--primary-light);
}

@keyframes blink {

  0%,
  50% {
    opacity: 1;
  }

  51%,
  100% {
    opacity: 0;
  }
}

/* Cursor Glow Effect */
.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}

@media (max-width: 768px) {
  .cursor-glow {
    display: none;
  }
}

/* Hero Image Animation */
.hero-illustration {
  max-width: 100%;
  animation: floatRotate 8s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(102, 126, 234, 0.3));
}

@keyframes floatRotate {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  25% {
    transform: translateY(-15px) rotate(2deg);
  }

  50% {
    transform: translateY(-25px) rotate(0deg);
  }

  75% {
    transform: translateY(-15px) rotate(-2deg);
  }
}

/* Glow Pulse Effect */
.glow-pulse {
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {

  0%,
  100% {
    box-shadow: 0 0 30px rgba(102, 126, 234, 0.4);
  }

  50% {
    box-shadow: 0 0 60px rgba(102, 126, 234, 0.6), 0 0 100px rgba(118, 75, 162, 0.3);
  }
}

/* Shimmer Effect on Buttons */
.btn-gradient {
  position: relative;
  overflow: hidden;
}

.btn-gradient::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.btn-gradient:hover::before {
  left: 100%;
}

/* Card Service Enhanced Hover */
.card-service {
  position: relative;
  overflow: hidden;
}

.card-service::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gradient-start), var(--gradient-mid), var(--gradient-end));
  transform: scaleX(0);
  transition: transform 0.5s ease;
}

.card-service:hover::before {
  transform: scaleX(1);
}

/* Icon Rotation on Hover */
.card-service:hover .icon {
  transform: rotateY(180deg);
}

.card-service .icon {
  transition: transform 0.6s ease;
  transform-style: preserve-3d;
}

/* Project Card Image Zoom */
.card-project .project-header {
  overflow: hidden;
}

.card-project:hover .project-header {
  background-size: 110%;
}

/* Feature List Animation */
.feature-list li {
  transition: all 0.3s ease;
}

.feature-list li:hover {
  padding-left: 2.5rem;
  color: var(--primary);
}

/* Tech Icon Bounce */
.tech-icon:hover img,
.tech-icon:hover i {
  animation: bounce 0.5s ease;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  25% {
    transform: translateY(-10px);
  }

  50% {
    transform: translateY(-5px);
  }

  75% {
    transform: translateY(-8px);
  }
}

/* Stats Counter Style */
.stat-item {
  text-align: center;
  padding: 2rem;
}

.counter-value {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Section Divider */
.section-divider {
  height: 100px;
  background: linear-gradient(to bottom right, transparent 49%, var(--bg-light) 50%);
}

/* Background Pattern */
.bg-pattern {
  background-image:
    radial-gradient(circle at 25px 25px, rgba(102, 126, 234, 0.05) 2%, transparent 0%),
    radial-gradient(circle at 75px 75px, rgba(118, 75, 162, 0.05) 2%, transparent 0%);
  background-size: 100px 100px;
}

/* Team Image Style */
.team-illustration {
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  transition: transform 0.5s ease;
}

.team-illustration:hover {
  transform: scale(1.02);
}

/* Security/AI Images */
.feature-image {
  max-width: 300px;
  margin: 0 auto;
  display: block;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.feature-image:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 20px 40px rgba(102, 126, 234, 0.4));
}

/* Loading Animation */
body:not(.loaded) {
  overflow: hidden;
}

body:not(.loaded)::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-dark);
  z-index: 99999;
}

body.loaded::before {
  animation: fadeOut 0.5s forwards;
}

@keyframes fadeOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

/* Why Item Glow Border */
.why-item {
  border: 1px solid transparent;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.05)),
    linear-gradient(135deg, var(--gradient-start), var(--gradient-mid));
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

/* Navbar Logo Glow */
.navbar-logo {
  transition: filter 0.3s ease;
}

.navbar-logo:hover {
  filter: drop-shadow(0 0 10px rgba(102, 126, 234, 0.5));
}

/* ===== New Section Styles ===== */

/* Floating Animation */
.floating-animation {
  animation: float 6s ease-in-out infinite;
}

/* Team Cards */
.card-team {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(102, 126, 234, 0.1);
  color: var(--text-dark);
  /* Ensure text is dark inside cards */
}

.card-team h4 {
  color: var(--text-dark) !important;
}

.card-team .text-primary {
  color: var(--primary) !important;
}

.card-team .text-muted {
  color: var(--text-muted) !important;
}

.card-team:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.card-team .team-img {
  transition: var(--transition-normal);
}

.card-team:hover .team-img {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(102, 126, 234, 0.4);
}

/* Logos Section */
.grayscale-logos img {
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s ease;
  cursor: pointer;
}

.grayscale-logos img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
}

/* Ensure images in About are responsive */
.img-fluid {
  max-width: 100%;
  height: auto;
}

/* WhatsApp Float Container */
.whatsapp-container {
  position: fixed;
  bottom: 90px;
  right: 40px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.whatsapp-float {
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  margin-top: 10px;
}

.whatsapp-float:hover {
  background-color: #128C7E;
  color: #FFF;
  transform: scale(1.1);
}

.whatsapp-bubble {
  background-color: white;
  color: #333;
  padding: 10px 15px;
  border-radius: 15px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  pointer-events: none;
  /* Animation to show bubble */
  opacity: 1;
  visibility: visible;
  animation: fadeInBubble 1s ease-out 1s forwards;
}

.whatsapp-bubble::after {
  content: '';
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 8px solid white;
}

@keyframes fadeInBubble {
  from {
    opacity: 0;
    transform: translate(-10px, -50%);
  }

  to {
    opacity: 1;
    transform: translate(0, -50%);
  }
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 47px;
  /* Aligned center with WhatsApp (40px + 60/2 - 45/2 ~ 47.5px) */
  width: 45px;
  height: 45px;
  background-color: #6366f1;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  text-decoration: none;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  background-color: #4f46e5;
  color: white;
  transform: translateY(-3px);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .whatsapp-container {
    bottom: 70px;
    right: 20px;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 25px;
  }

  .whatsapp-bubble {
    font-size: 12px;
    padding: 8px 12px;
    right: 60px;
  }

  .back-to-top {
    bottom: 20px;
    right: 25px;
    /* Aligned with WhatsApp mobile (20 + 25 = 45 center) */
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}

/* Mobile Stats Override */
@media (max-width: 576px) {
  .counter-wrapper[data-stat="users"] .counter-value {
    font-size: 0 !important;
  }

  .counter-wrapper[data-stat="users"] .counter-value::after {
    content: '23K+';
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    background: linear-gradient(135deg, #fff 0%, #a5b4fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

/* Flag Icons */
.flag-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}