html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

*, *::before, *::after {
  box-sizing: inherit;
}

body {
    margin: 0;
    font-family: Inter, Arial, Helvetica, sans-serif;
    background-color: #0f172a;
    color: #111827;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button, input, textarea {
    font: inherit;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: url(images/hero.jpg) no-repeat center/cover;
    background-attachment: fixed;
    filter: blur(6px);
    transform: scale(1.05);
    z-index: -2;
}

.hero::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.25) 45%, rgba(0,0,0,0.75) 100%);
    z-index: -1;
}

.hero-content {
    color: #f8fafc;
    text-align: center;
    position: relative;
    max-width: 760px;
    padding: 3rem 2.25rem;
    margin: 0 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    background: rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 28px;
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(10px);
}

.hero-content h1 {
    margin: 0;
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    line-height: 1.02;
    letter-spacing: 0.02em;
    text-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.hero-description {
    margin: 0;
    max-width: 720px;
    font-size: 1.05rem;
    line-height: 1.9;
    opacity: 0.88;
}

.hero-content .tagline {
    margin: 0;
    opacity: 0.9;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.site {
padding: 60px 20px;
background: #f5f5f5;
color: #333;
min-height: 100vh;
}

.background {
    position: fixed;
      width: 100%;
      height: 100%;
      background: url(images/hero.jpg) no-repeat center center/cover;
      filter: blur(8px);
      z-index: -1;
}

#cta {
    background-color: #0070f3;
    color: #fff;
    border: none;
    padding: 0.75rem 1.25rem;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
}

#cta:hover {
    background-color: #005ac1;
}

#logo {
    width: 280px;
    max-width: 60%;
    height: auto;
    margin-bottom: 0.5rem;
}

.fancy {
 background-color: rgba(255, 255, 255, 0.08);
 border: 2px solid rgba(255,255,255,0.8);
 border-radius: 999px;
 box-sizing: border-box;
 color: #fff;
 cursor: pointer;
 display: inline-flex;
 float: none;
 font-weight: 700;
 letter-spacing: 0.08em;
 margin: 0 auto;
 outline: none;
 overflow: visible;
 padding: 1.2em 2.2em;
 position: relative;
 text-align: center;
 text-decoration: none;
 text-transform: uppercase;
 transition: all 0.3s ease-in-out;
 user-select: none;
 font-size: 0.95rem;
}

.fancy::before {
 content: " ";
 width: 1.5625rem;
 height: 2px;
 background: rgba(255,255,255,0.8);
 top: 50%;
 left: 1.5em;
 position: absolute;
 transform: translateY(-50%);
 transform-origin: center;
 transition: background 0.3s linear, width 0.3s linear;
}

.fancy .text {
 font-size: 1.125em;
 line-height: 1.33333em;
 padding-left: 2em;
 display: block;
 text-align: left;
 transition: all 0.3s ease-in-out;
 text-transform: uppercase;
 text-decoration: none;
 color: #fff;
}

.fancy .top-key {
 height: 2px;
 width: 1.5625rem;
 top: -2px;
 left: 0.625rem;
 position: absolute;
 background: transparent;
 transition: width 0.5s ease-out, left 0.3s ease-out;
}

.fancy .bottom-key-1 {
 height: 2px;
 width: 1.5625rem;
 right: 1.875rem;
 bottom: -2px;
 position: absolute;
 background: transparent;
 transition: width 0.5s ease-out, right 0.3s ease-out;
}

.fancy .bottom-key-2 {
 height: 2px;
 width: 0.625rem;
 right: 0.625rem;
 bottom: -2px;
 position: absolute;
 background: transparent;
 transition: width 0.5s ease-out, right 0.3s ease-out;
}

.fancy:hover {
 color: #111;
 background: #fff;
}

.fancy:hover::before {
 width: 0.9375rem;
 background: #111;
}

.fancy:hover .text {
 color: #111;
 padding-left: 1.5em;
}

.fancy:hover .top-key {
 left: -2px;
 width: 0px;
}

.fancy:hover .bottom-key-1,
 .fancy:hover .bottom-key-2 {
 right: 0;
 width: 0;
}

.contact {
    padding: 5rem 1.5rem;
    background: #f8fafc;
    color: #111827;
}

.contact-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: block;
}

.contact-copy {
    display: grid;
    gap: 1.75rem;
}

.contact h1 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3rem);
}

.contact p {
    margin: 0;
    max-width: 620px;
    line-height: 1.8;
    color: #475569;
}

.contact-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(2, minmax(220px, 1fr));
}

.contact-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 1.75rem;
    box-shadow: 0 22px 45px rgba(15, 23, 42, 0.08);
    min-height: 150px;
}

.contact-card h2 {
    margin: 0 0 0.85rem;
    font-size: 1.2rem;
    color: #0f172a;
}

.contact-card p {
    margin: 0;
    line-height: 1.8;
    color: #334155;
}

.contact-card a {
    color: #0755d1;
    text-decoration: none;
    font-weight: 700;
}

.contact-form {
    width: 100%;
    max-width: 520px;
    background: #ffffff;
    border-radius: 28px;
    padding: 2.25rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 22px 45px rgba(15, 23, 42, 0.08);
    display: grid;
    gap: 1rem;
}

.contact-form label {
    display: grid;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: #334155;
}

.contact-form span {
    font-weight: 700;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid #cbd5e1;
    border-radius: 18px;
    padding: 1rem 1.1rem;
    font: inherit;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.14);
}

.form-submit {
    width: fit-content;
    background: #111827;
    color: #ffffff;
    border: none;
    border-radius: 999px;
    padding: 0.95rem 1.8rem;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.form-submit:hover {
    transform: translateY(-1px);
    background: #2563eb;
}

@media (max-width: 680px) {
    .contact {
        padding: 3rem 1rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.footer {
    background: linear-gradient(180deg, #111827 0%, #0f172a 100%);
    color: #e2e8f0;
    padding: 2.75rem 1.5rem 1.5rem;
    position: relative;
    width: 100%;
    margin-top: auto;
    box-sizing: border-box;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    border-top: 1px solid rgba(226, 232, 240, 0.12);
    padding-top: 1.5rem;
}

.footer-brand {
    max-width: 420px;
}

.footer-title {
    margin: 0 0 0.75rem;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #ffffff;
}

.footer-copy {
    margin: 0;
    line-height: 1.8;
    color: #cbd5e1;
}

.footer-links {
    display: grid;
    gap: 0.75rem;
    min-width: 220px;
}

.footer-links a {
    color: #f8fafc;
    text-decoration: none;
    padding: 0.9rem 1.1rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-1px);
}

.footer-note {
    margin: 1.5rem auto 0;
    max-width: 1100px;
    color: #94a3b8;
    font-size: 0.95rem;
    text-align: center;
}

.scroll-down {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 30px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    animation: gentle-bounce 2s infinite;
}

@keyframes gentle-bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-5px);
    }
    60% {
        transform: translateX(-50%) translateY(-2px);
    }
}

.services {
    background: #111827;
    color: #f8fafc;
    padding: 4rem 1.5rem 2.5rem;
}

.services h1 {
    margin: 0 0 2.25rem;
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
}

.services-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    gap: 1.75rem;
}

.service {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
    align-items: center;
    padding: 2rem;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.18);
}

.service-text {
    padding: 0 0.5rem;
}

.service-text h2 {
    margin: 0 0 0.85rem;
    font-size: 1.75rem;
    color: #f8fafc;
}

.service-text p {
    margin: 0;
    color: #cbd5e1;
    line-height: 1.8;
}

.service-image {
    border-radius: 24px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    display: block;
    object-fit: cover;
}

@media (min-width: 860px) {
    .contact-inner {
        display: flex;
        align-items: flex-start;
        gap: 2.5rem;
    }

    .contact-copy {
        flex: 1 1 540px;
    }

    .contact-form {
        flex: 0 0 520px;
    }

    .service {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 860px) {
    .contact-inner {
        display: block;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 1200px) {
    .contact-grid {
        grid-template-columns: repeat(3, minmax(220px, 1fr));
    }
}

@media (max-width: 680px) {
    .hero-content {
        padding: 2.25rem 1.25rem;
    }

    .services {
        padding: 3rem 1rem 2rem;
    }

    .contact {
        padding: 3rem 1rem;
    }

    .footer {
        padding: 2rem 1rem 1rem;
    }

    .footer-inner {
        display: grid;
        gap: 1rem;
        text-align: center;
    }

    .footer-links {
        justify-items: center;
    }
}

.service {
    display: flex;
    overflow: hidden;
}

.service:nth-child(odd) {
    flex-direction: row;
}

.service:nth-child(even) {
    flex-direction: row;
}

.service-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-text h2 {
    margin: 0 0 15px 0;
    font-size: 1.8rem;
    color: white;
}

.service-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: lightgray;
    margin: 0;
}

.service-image {
    flex: 1;
    min-height: 300px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .service {
        flex-direction: column !important;
    }
    .service-image {
        min-height: 200px;
    }
}

/* Burger Menu */
/* From Uiverse.io by Cevorob */
.burger {
  position: relative;
  width: 40px;
  height: 30px;
  background: transparent;
  cursor: pointer;
  display: block;
  position: fixed;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1000;
}

.burger input {
  display: none;
}

.burger span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: black;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
}

.burger span:nth-of-type(1) {
  top: 0px;
  transform-origin: left center;
}

.burger span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
  transform-origin: left center;
}

.burger span:nth-of-type(3) {
  top: 100%;
  transform-origin: left center;
  transform: translateY(-100%);
}

.burger input:checked ~ span:nth-of-type(1) {
  transform: rotate(45deg);
  top: 0px;
  left: 5px;
}

.burger input:checked ~ span:nth-of-type(2) {
  width: 0%;
  opacity: 0;
}

.burger input:checked ~ span:nth-of-type(3) {
  transform: rotate(-45deg);
  top: 28px;
  left: 5px;
}

/* Navigation Menu */
.nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    z-index: 999;
    transition: left 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-menu.active {
    left: 0;
}

.nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
}

.nav-menu ul li a {
    color: #f8fafc;
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #0070f3;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-menu ul li a:hover {
    color: #0070f3;
}

.nav-menu ul li a:hover::after {
    width: 80%;
}
