@import url('https://fonts.googleapis.com/css2?family=Oxanium:wght@300;400;600;700&display=swap');

:root {
  --background: #09090B;
  --foreground: #FAFAFA;
  --primary: #01b1f0;
  --muted: #A1A1AA;
  --card: #18181B;
  --border: #27272A;
  --input: #27272A;
}

* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Oxanium', cursive;
  background-color: var(--background);
  color: var(--foreground);
  margin: 0;
  line-height: 1.6;
  padding-top: 80px;
  background-image: url('../images/background2.png');
  background-size: cover;
  background-attachment: fixed;
}

header#header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0); /* transparent */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  z-index: 1000;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(10px);
}

header#header.scrolled {
  background: rgba(0, 0, 0, 0.7); /* less transparent, darker tint */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

#logo h1 {
  margin: 0;
  color: var(--primary);
  font-size: 2em;
  font-weight: 700;
}

#nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 30px;
}

#nav a {
  color: var(--foreground);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

#nav a:hover {
  color: var(--primary);
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

#hero {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
  position: relative;
}

.hero-content-text {
  animation: fadeIn 1.5s ease forwards;
}

.hero-content-text h2 {
  font-size: 3em; /* Decreased font size */
  margin-bottom: 20px;
}

.hero-content-text p {
  font-size: 1.2em; /* Decreased font size */
  margin-bottom: 30px;
}

.button {
  background: linear-gradient(45deg, var(--primary), #007bff); /* Gradient background */
  color: #fff;
  padding: 15px 30px; /* Larger padding */
  border-radius: 8px; /* Slightly more rounded corners */
  text-decoration: none;
  font-weight: 700; /* Bolder font */
  transition: all 0.3s ease; /* Smooth transition for all properties */
  display: inline-block;
  border: none; /* Remove default border */
  box-shadow: 0 5px 15px rgba(0, 177, 240, 0.4); /* Initial shadow */
}

.button:hover {
  background: linear-gradient(45deg, #007bff, var(--primary)); /* Reverse gradient on hover */
  transform: translateY(-5px); /* More pronounced lift */
  box-shadow: 0 8px 20px rgba(0, 177, 240, 0.6); /* More pronounced shadow */
}

.wrapper {
  padding: 100px 0;
}

.title {
  text-align: center;
  font-size: 2.5em;
  margin-bottom: 60px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: var(--card);
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.25);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.blog-card {
  background-color: var(--card);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.25);
}

.blog-card img {
  max-width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
}

.blog-card h3 {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: var(--primary);
}

.blog-card p {
  font-size: 0.95em;
  color: var(--muted);
  margin-bottom: 20px;
}

.button.small {
  padding: 8px 16px;
  font-size: 0.9em;
}

.icon {
  font-size: 2.8em;
  color: var(--primary);
  margin-bottom: 20px;
}

footer {
  background: #0c0c0e;
  color: var(--foreground);
  padding: 80px 0 40px;
}

footer .col-12 {
  margin-bottom: 30px;
  text-align: center;
}

footer .col-12:last-child {
  margin-bottom: 0;
}

footer h3 {
  margin-bottom: 20px;
  font-weight: 600;
}

footer ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
}

footer a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--primary);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 15px;
  background-color: var(--input);
  color: var(--foreground);
  border: 1px solid var(--border);
  border-radius: 6px;
}

.contact-form .button {
  background-color: var(--primary);
  padding: 12px 20px;
  border: none;
  cursor: pointer;
}

.contact-form .button:hover {
  background-color: #019bd5;
}

footer ul.social-icons {
  display: flex;
  justify-content: center;
  padding: 0;
}

.social-icons a {
  margin-right: 15px;
}

.social-icons i {
  font-size: 1.6em;
  transition: color 0.3s ease;
}

.social-icons i:hover {
  color: var(--primary);
}

.copyright {
  text-align: center;
  margin-top: 40px;
  font-size: 0.9em;
  color: var(--muted);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}



.animate-fade {
  animation: fadeIn 1.2s ease forwards;
}

#blog-post {
  min-height: calc(100vh - 80px);
}

#blog-post .container {
  background-color: rgba(10, 10, 10, 0.8); /* A dark, semi-transparent background */
  padding: 40px;
  padding-top: 120px; /* Adjust based on header height */
  border-radius: 10px;
}

#blog-post .title {
  margin-bottom: 20px;
}

.post-meta {
  text-align: center;
  color: var(--muted);
  font-size: 0.9em;
  margin-bottom: 40px;
}

#blog-post p {
  margin-bottom: 1em;
  line-height: 1.8;
}

#blog-post .button {
  margin-top: 30px;
}


