/* GLOBAL SETTINGS */
/* GLOBAL SETTINGS */
body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #0b0f1a;
    color: #ffffff;
}

/* HEADER */
header {
    text-align: center;
    padding: 2rem 1rem;
    background-color: #0d1220;
}
header h1 {
    color: #00ffff;
    margin: 0;
}
.tagline {
    font-size: 1.2rem;
    color: #00bfff;
    margin-top: 0.5rem;
}
nav {
    margin-top: 1rem;
}
nav a {
    margin: 0 1rem;
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
}

/* HERO SECTION */
.hero {
    text-align: center;
    padding: 3rem 1rem;
    background-color: #11182a;
}
.hero-img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1rem;
}
.hero h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}
.hero p {
    max-width: 600px;
    margin: 0 auto 1.5rem;
    line-height: 1.6;
}
.hero .btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.8rem 1.5rem;
    background: #00bfff;
    color: #000;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

/* ABOUT SECTION */
.about {
    padding: 2rem 1rem;
    background-color: #0b0f1a;
    text-align: center;
}
.about h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}
.about-flex {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 1.5rem;
}

.about-img {
    width: 180px;
    max-width: 180px;
    height: auto;
    border-radius: 10px;
    flex-shrink: 0;
    object-fit: contain;
}

.about-text {
    max-width: 380px;
    font-size: 0.85rem;
    line-height: 1.6;
    list-style-type: square;
    padding-left: 1.2rem;
    text-align: left;
}


/* SERVICES SECTION */
.services {
    padding: 2rem 1rem;
    background-color: #11182a;
    text-align: center;
}
.services h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
}
.grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 1rem 0;
}

.card {
  background: #1c2435;
  padding: 1rem;
  border-radius: 10px;
  width: 240px;
  box-shadow: 0 0 10px rgba(0, 191, 255, 0.2);
  text-align: center;
  transition: transform 0.2s;
  text-decoration: none;
  color: inherit;
}

.card:hover {
  transform: translateY(-5px);
  cursor: pointer;
}

.card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 0.75rem;
}

.card h3 {
  margin: 0.5rem 0 0.25rem;
  font-size: 1.1rem;
  font-weight: bold;
  color: #00bfff;
}

.card p {
  margin: 0;
  font-size: 0.95rem;
  color: #dddddd;
}
.contact {
    padding: 2rem 1rem;
    background-color: #0b0f1a;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 700px;
    margin: 0 auto;
}


.contact h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #00bfff;
}

.contact p {
    font-size: 1rem;
    margin: 0.5rem 0;
}

.contact a {
    color: #00ffff;
    text-decoration: none;
}

.contact a:hover {
    text-decoration: underline;
}
.social-links {
    margin-top: 2rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.social-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1rem;
}
.social-item img {
    width: 18px;
    height: 18px;
    filter: invert(65%) sepia(90%) saturate(500%) hue-rotate(180deg);
}

.social-item a {
    color: #00ffff;
    font-weight: bold;
    text-decoration: none;
}

.social-item a:hover {
    color: #00bfff;
    text-decoration: underline;
}
a.card {
  all: unset;
  display: block;
}

/* Restore full .card styling on the link card */
a.card {
  background: #1c2435;
  padding: 1rem;
  border-radius: 10px;
  width: 240px;
  box-shadow: 0 0 10px rgba(0, 191, 255, 0.2);
  text-align: center;
  transition: transform 0.2s;
}

a.card:hover {
  transform: translateY(-5px);
  cursor: pointer;
}

a.card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 0.75rem;
}

a.card h3 {
  margin: 0.5rem 0 0.25rem;
  font-size: 1.1rem;
  font-weight: bold;
  color: #00bfff !important;
  text-decoration: none !important;
}

a.card p {
  margin: 0;
  font-size: 0.95rem;
  color: #dddddd !important;
  text-decoration: none !important;
}
.freelance-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 1rem;
}

.freelance-buttons a {
  background-color: #00bfff;
  color: #000;
  padding: 0.6rem 1.4rem;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  font-size: 0.9rem;
  width: 180px;
  text-align: center;
  box-shadow: 0 0 8px rgba(0, 191, 255, 0.3);
  transition: background-color 0.3s ease;
}

.freelance-buttons a:hover {
  background-color: #00a5d1;
  cursor: pointer;
}

.highlighted-card {
  position: relative;
  border: 2px solid #00bfff;
}

.highlighted-card .badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #00bfff;
  color: #000;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 4px 8px;
  border-radius: 6px;
  box-shadow: 0 0 6px rgba(0, 191, 255, 0.4);
  z-index: 10;
}



/* FOOTER */
footer {
    text-align: center;
    padding: 1.5rem 1rem;
    background-color: #0d1220;
    font-size: 0.9rem;
    color: #aaaaaa;
    margin-top: 2rem;
}
