/* SCSS RGB */
/* SCSS Gradient */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: rgb(18, 50, 84);
  background: #ffffff;
}

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

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

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.section {
  padding: 80px 0;
}

.section-alt {
  background: #f8fafc;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 15px;
  text-align: center;
}

.section-description {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 40px;
  color: #4b5563;
}

/* Header */
.site-header {
  background: #0f172a;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo {
  font-size: 1.3rem;
  color: rgb(244, 93, 1);
  text-transform: uppercase;
  font-weight: 200;
  font-family: Arial, Helvetica, sans-serif;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 24px;
}

.nav-links a {
  color: #fff;
  transition: opacity 0.3s ease;
}

.nav-links a:hover {
  opacity: 0.75;
}

/* Hero */
.hero {
  background: rgb(18, 50, 84);
  color: #fff;
  padding: 100px 0;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  color: rgb(151, 204, 4);
  margin-bottom: 15px;
}

.hero h1 {
  font-size: 3rem;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-description {
  font-size: 1.05rem;
  max-width: 600px;
  color: #dbeafe;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.btn {
  display: inline-block;
  text-transform: uppercase;
  padding: 14px 22px;
  border-radius: 8px;
  font-weight: bold;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

.btn-primary {
  background: rgb(244, 93, 1);
  color: rgb(14, 23, 42);
}

.btn-secondary {
  background: rgb(14, 23, 42);
  color: rgb(151, 204, 4);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.hero-card {
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: center;
  color: rgb(244, 93, 1);
  padding: 28px;
  border-radius: 16px;
  backdrop-filter: blur(6px);
}

.hero-card-image {
  height: 300px;
  border-radius: 16px;
  width: auto;
}

.hero-card h2 {
  margin-bottom: 15px;
}

.hero-card ul {
  padding-left: 20px;
}

.hero-card li {
  margin-bottom: 10px;
}

/* About */
.two-column {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 35px;
  align-items: start;
}

.two-column h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}

.about-box {
  background: #f1f5f9;
  padding: 24px;
  border-radius: 14px;
}

.about-box ul {
  list-style-type: none;
  padding-left: 1rem;
}

.about-box h3 {
  margin-bottom: 10px;
}

/* Services */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 35px;
}

.card {
  background: #fff;
  padding: 28px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.card h3 {
  margin-bottom: 12px;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #e5e7eb;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.gallery-item img {
  width: 100%;
  height: 260px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  color: #fff;
  display: flex;
  align-items: end;
  padding: 20px;
  font-weight: bold;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* Contact */
.contact-box {
  text-align: center;
  max-width: 700px;
}

.contact-box h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.contact-box p {
  margin-bottom: 24px;
  color: #4b5563;
}

/* Footer */
.site-footer {
  background: #0f172a;
  color: #cbd5e1;
  text-align: center;
  padding: 25px 0;
}

.four-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 35px;
}

.oh-no {
  position: relative;
}

.oh-no img {
  width: 100%;
  display: block;
}

.oh-no .btn {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  /* Add styling: background-color, padding, border-radius, etc. */
  background: rgb(244, 93, 1);
  color: #fff;
  border-radius: 50%;
  padding: 12px 16px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-content,
  .two-column,
  .card-grid,
  .gallery {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: 2.3rem;
  }
  .nav {
    flex-direction: column;
    gap: 15px;
  }
  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}/*# sourceMappingURL=styles.css.map */