@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.1/css/all.min.css');

:root {
  --primary-color: #3498DB;
  --secondary-color: #2980B9;
  --accent-color: #85C1E9;
  --light-color: #EAE4D5;
  --dark-color: #0F1021;
  --gradient-primary: linear-gradient(135deg, #3498DB 0%, #2980B9 100%);
  --hover-color: #2471A3;
  --background-color: #FFFFFF;
  --text-color: #34495E;
  --border-color: rgba(52, 152, 219, 0.2);
  --divider-color: rgba(15, 16, 33, 0.1);
  --shadow-color: rgba(15, 16, 33, 0.1);
  --highlight-color: #FFEB00;
  --main-font: 'Montserrat', sans-serif;
  --alt-font: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
}

.card-hover {
    transition: transform 0.3s ease-in-out;
}
.card-hover:hover {
    transform: translateX(10px);
}

.hover\:text-underline:hover {
    text-decoration: underline;
}

button:hover {
    background-color: var(--primary-color) !important;
}