:root {
  --background: 0 0% 100%;
  --foreground: 222.2 84% 4.9%;
  --card: 0 0% 100%;
  --card-foreground: 222.2 84% 4.9%;
  --popover: 0 0% 100%;
  --popover-foreground: 222.2 84% 4.9%;
  --primary: 162 47% 50%;
  --primary-foreground: 210 40% 98%;
  --secondary: 210 40% 96.1%;
  --secondary-foreground: 222.2 47.4% 11.2%;
  --muted: 210 40% 96.1%;
  --muted-foreground: 215.4 16.3% 46.9%;
  --accent: 210 40% 96.1%;
  --accent-foreground: 222.2 47.4% 11.2%;
  --destructive: 0 84.2% 60.2%;
  --destructive-foreground: 210 40% 98%;
  --border: 214.3 31.8% 91.4%;
  --input: 214.3 31.8% 91.4%;
  --ring: 162 47% 50%;
  --radius: 0.5rem;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Geist", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: sans-serif;
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
}

section {
  min-height: 100vh;
  padding: 20px 0;
}

.hero {
  position: relative;
  background-image: url(./public/./server.jpg);
  opacity: 0.8;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 60vh;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.service-text {
  font-size: 22px;
  padding: 0 20px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  pointer-events: none;
}

.hero_content {
  text-align: center;
  position: relative;
  z-index: 10;
  padding: 20px;
}

.hero_img_content {
  display: none;
}

h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 900;
  color: #fff;
}

.explore p {
  color: #ffffffe8;
  font-size: 20px;
  font-weight: 500;
}

button {
  cursor: pointer;
  margin: 1rem;
  color: white;
  letter-spacing: 2px;
  border: none;
  background-color: #f79477;
  border-radius: 30px;
  width: 120px;
  height: 50px;
}

p {
  margin: 0;
  font-size: 15px;
}

.picture {
  margin: 1rem;
  position: absolute;
  bottom: 0;
  right: 0;
}

a {
  color: black;
  cursor: pointer;
}

@media (min-width: 900px) {
  h1 {
    font-size: 40px;
    font-weight: 900;
    color: #fff;
  }
}

@media (min-width: 900px) {
  .hero_content {
    padding: 0px;
  }

  .explore {
    text-align: center;
  }
}

p {
  color: #666;
}

img {
  object-fit: cover;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2), 0 3px 10px 0 rgba(0, 0, 0, 0.19);
}

.logoImg {
  height: 100%;
  border-radius: 0px;
  box-shadow: none;
}

.heroSectionImgWrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  align-items: center;
}

.titleHighlight {
  font-weight: 700;
  font-size: 3rem;
}

.heroSectionTitle {
  font-size: 1.5rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-style: italic;
  gap: 16px;
}

.heroSectionSecondLine {
  margin-left: 7rem;
}

.content {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

.who-we-are-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 40px;

}

.who-we-are-container img {
  display: none;
}

.projects-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 40px;
  margin-bottom: 50px;
  height: 40%;
  width: 100%;
}

header {
  position: sticky;
  top: 0;
  z-index: 40;
  width: 100%;
  background-color: hsl(var(--background));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2), 0 4px 12px 0 rgba(0, 0, 0, 0.19);
}

fieldset {
  border: none;
}

.headerWrapper {
  width: 100%;
  display: flex;
  height: 4rem;
  align-items: center;
  justify-content: space-between;
  max-width: 80vw;
}

.logoWrapper {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 3.8rem;
  width: auto;
  padding: 8px;
}

.rounded {
  border-radius: 100%;
}

.navSection {
  display: none;
  gap: 4rem;
}

a {
  text-decoration: none;
  color: hsl(var(--foreground));
}

.navItem {
  font-size: 1.1rem;
  font-weight: 500;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.navItem:hover {
  color: hsl(var(--primary));
}

button {
  background-color: hsl(var(--foreground));
  color: hsl(var(--background));
  padding: 1rem 2rem;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  opacity: 0.7;
}

main {
  flex: 1 1 0%;
}

.heroSection {
  height: 75vh;
  display: flex;
  align-items: center;
}

.container {
  width: 100%;
}

.heroSectionWrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.heroSectionGrid {
  display: grid;
  gap: 1.5rem;
  width: 80vw;
}

.who-we-are {
  width: 100%;
}

.who-we-are .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Centered column */
.who-we-are .intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  row-gap: 1rem;
}

.who-we-are h2 {
  font-size: 1.875rem;
  font-weight: bold;
  letter-spacing: -0.025em;
}

@media (min-width: 640px) {
  .who-we-are h2 {
    font-size: 3rem;
  }
}

.who-we-are p.description {
  max-width: 900px;
  color: #6b7280;
  /* muted-foreground */
  line-height: 1.625;
  font-size: 1rem;
}

@media (min-width: 768px) {
  .who-we-are p.description {
    font-size: 1.125rem;
  }
}

/* Two-column layout */
.who-we-are .content {
  display: grid;
  max-width: 80rem;
  margin: 3rem auto 0;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .who-we-are .content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.marquee-container img {
  display: block;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  border-radius: 0.75rem;
  margin: 0 auto;
}

.who-we-are ul {
  list-style: none;
  display: grid;
  gap: 1.5rem;
  padding: 0;
}

.who-we-are h3 {
  font-size: 1.25rem;
  font-weight: bold;
}

.who-we-are p.body {
  color: #6b7280;
  margin-top: 0.25rem;
  font-size: 20px !important;
}

.svg-icon {
  margin-bottom: 20px;
  border-radius: 100%;
  background-color: #ddddddd3;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section {
  text-align: center;
}

.section h2 {
  font-size: 30px;
  margin-bottom: 10px;
}

.bg-secondary {
  background-color: hsl(var(--secondary));
}

.marquee-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.marquee-wrapper {
  max-width: 80vw;
}

.section p {
  max-width: 900px;
  margin: 0 auto 40px;
  color: #666;
  font-size: 18px;
  line-height: 1.6;
}

.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-img {
  width: 270px;
  height: 140px;
  object-fit: cover;
  border-radius: 4px;
}

@media (min-width: 768px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  text-align: left;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

.subject-card {
  background: #f1f1f1;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 16px;
  text-align: center;
  transition: transform 0.2s;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.subject-img {
  object-fit: contain;
  object-position: center;
  width: 60%;
  height: 60%;
  box-shadow: none;
}

.card-header {
  padding: 20px;
  border-bottom: 1px solid #eee;
}

.card-header h3 {
  font-size: 22px;
  margin: 0 0 8px;
}

.card-header p {
  margin: 0;
  font-size: 14px;
  color: #888;
}

.card-image-wrapper {
  padding: 12px;
  height: 50%;
  overflow: hidden;
}

.card-image {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.card-image img:hover {
  transform: scale(1.05);
}

.card-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.buttons-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cards-button {
  width: 90%;
}

.card-content p {
  color: #555;
  font-size: 16px;
  line-height: 1.5;
}

.card-content button {
  margin-top: 20px;
  width: 100%;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}

.card-content button:hover {
  background-color: #0056b3;
}

.marquee-container {
  position: relative;
  overflow: hidden;
  padding: 5px 0 60px 0;
}

.marquee {
  display: flex;
  gap: 40px;
  animation: marquee 40s linear infinite;
  width: max-content;
}

.slower {
  animation: marquee 30s linear infinite;
}

.marquee img {
  width: 200px;
  height: 80px;
  object-fit: contain;
  flex-shrink: 0;
  gap: 24px;
}

.subject-section {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  margin-top: 10px;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.marquee-container::before,
.marquee-container::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
}

.marquee-container::before {
  left: 0;
  background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0));
}

.marquee-container::after {
  right: 0;
  background: linear-gradient(to left, #fff, rgba(255, 255, 255, 0));
}

.controls {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.controls button {
  width: 40px;
  height: 40px;
  border: 1px solid #ccc;
  border-radius: 50%;
  background: #f9f9f9;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.controls button:hover {
  background: #eee;
}

h2 {
  font-size: 40px;
  margin-bottom: 20px;
}

h3 {
  font-size: 28px;
  margin-bottom: 10px;
}

p {
  color: #666;
  line-height: 1.6;
}

.info-group {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 16px;
}

.icon {
  font-size: 18px;
  color: #007bff;
}

.contact-us-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 30px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-image: linear-gradient(to right, #ecfdf5, #f0fdfa);
}

form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cv-wrapper {
  background-image: linear-gradient(to right, #ecfdf5, #f0fdfa);
  margin-bottom: 50px;
}

.line {
  display: none;
}

.contact-us-form {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.cv-upload {
  display: inline-block;
  padding: 10px 20px;
  background: #333;
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
}

.contact-us-title {
  display: none;
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 14px;
}

input,
textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
}

.input-group {
  display: grid;
  gap: 20px;
}

@media (min-width: 640px) {
  .input-group {
    grid-template-columns: 1fr 1fr;
  }
}

textarea {
  resize: vertical;
  min-height: 120px;
}

button {
  padding: 14px;
  background: #007bff;
  color: #fff;
  font-size: 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

button:hover {
  background: #0056b3;
}

footer {
  background: #f9f9f9;
  border-top: 1px solid #ddd;
  padding: 60px 20px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer {
  width: 80vw;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo img {
  width: 32px;
  height: 32px;
  border-radius: 4px;
}

.footer-logo span {
  font-size: 20px;
  font-weight: bold;
}

.footer-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: 80vw;
}

.footer-section h4 {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 16px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section li {
  margin-bottom: 10px;
}

.footer-section a {
  text-decoration: none;
  color: #666;
  font-size: 14px;
}

.footer-section a:hover {
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #ddd;
  font-size: 12px;
  color: #999;
  justify-content: space-between;
  align-items: center;
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.footer-socials a {
  color: #999;
  transition: color 0.3s;
}

.footer-socials a:hover {
  color: #333;
}

.footer-socials svg {
  width: 20px;
  height: 20px;
}

select {
  font-weight: 700;
  padding: 6px;
  margin: 0;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: 0 3px 0 #ccc, 0 -1px #fff inset;
  -moz-box-shadow: 0 3px 0 #ccc, 0 -1px #fff inset;
  box-shadow: 0 3px 0 #ccc, 0 -1px #fff inset;
  background: #f8f8f8;
  color: #888;
  border: none;
  outline: none;
  display: inline-block;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  width: 100%;
}

.projects-container img {
  display: none;
}

@media (min-width: 1024px) {
  .heroSectionGrid {
    grid-template-columns: 1fr 400px;
    gap: 3rem;
  }
}

@media (min-width: 1280px) {
  .heroSectionGrid {
    grid-template-columns: 1fr 600px;
  }
}

.marquee {
  display: flex;
  gap: 40px;
  animation: marquee 40s linear infinite;
  width: max-content;
}

.slower {
  animation: marquee 30s linear infinite;
}

.hero {
  position: relative;
  background-image: url(./public/./server.jpg);
  opacity: 0.8;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 60vh;
}

.body {
  font-size: 15px !important;
}

.body-projects {
  font-size: 16px;
}

.projects-img {
  height: 290px;
}

#map { display: none;}

#service {
  margin-bottom: 80px;
}

#selling-areas {
  margin-bottom: 80px;
}

#projects {
  margin-bottom: 80px;
}

.buttons-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (min-width: 900px) {
  .navSection {
    display: flex;
  }

  section {
    padding: 80px 0;
  }

  .hero_img_content {
    text-align: center;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    opacity: 1;
    position: relative;
    z-index: 10;
    gap: 12px;
  }

  .contact-us-title {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .heroSection {
    height: 85vh;
  }

  .contact-us-title {
    display: flex;
  }

  .line {
    display: flex;
    width: 1px;
    height: 30rem;
    margin: 0 20px;
    background-color: #ddd;
  }

  .who-we-are-container img {
    display: block;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center;
    border-radius: 0.75rem;
    margin: 0 auto;
  }

  .section h2 {
    font-size: 40px;
    margin-bottom: 10px;
  }

  .service-text {
    padding: 0px;
    font-size: 28px;
  }

  .cards {
    padding: 0;
  }

  .card-image {
    height: 100%;
  }

  .subject-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .subject-img {
    width: 80%;
    height: 80%;
  }

  #service {
    margin-bottom: 0px;
  }

  #selling-areas {
    margin-bottom: 0px;
  }

  #projects {
    margin-bottom: 0px;
  }

  .projects-container img {
    display: block;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center;
    border-radius: 0.75rem;
    margin: 0 auto;
  }

  .footer-line {
    height: 80%;
    display: flex;
    width: 1px;
    margin: 0 20px;
    background-color: #ddd;
  }

  #map { height: 200px; width: 300px; display: block;}
}