@media (max-width: 768px) {

  nav {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .logo img {
    width: 180px;
  }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    color: #1c1c1c;
    background-color: #f8f6f2;
}

/* CONTAINER */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* NAVBAR */
.navbar {
    background: #ffffff;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 9px;
}

.logo img {
    width: 250px;
}

.logo span {
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #222;
    font-size: 14px;
    font-weight: 400;
}

.nav-links a.active,
.nav-links a:hover {
    border-bottom: 2px solid #1f4d6b;
}

/* HERO SECTION */
@media (max-width: 768px) {

  .hero-content {
    width: 90%;
    padding: 30px 20px;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 42px;
    line-height: 1.1;
  }

  .hero-content p {
    font-size: 16px;
  }

  .hero-section {
    height: auto;
    padding: 80px 20px;
    background-position: center;
  }
}

.hero {
    height: 80vh;
    background: url('home_bg.png.jpeg') center/cover no-repeat;
    position: relative;
}

.hero-overlay {
    background: rgba(10, 32, 51, 0.85);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    color: #fff;
    max-width: 700px;
}

.subtitle {
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.hero h1 {
    font-size: 48px;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.hero-text {
    font-size: 14px;
    opacity: 0.9;
}

/* ABOUT PREVIEW */
@media (max-width: 768px) {

  .about-preview {
    flex-direction: column;
    text-align: center;
    padding: 50px 20px;
  }

  .about-preview img {
    width: 100%;
    max-width: 320px;
    margin-bottom: 30px;
  }

  .about-text h2 {
    font-size: 42px;
    line-height: 1.2;
  }

  .about-text p {
    font-size: 16px;
  }
}

* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
}

.about-preview {
    padding: 80px 0;
    background: #f5f0e9;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 4px;
}

.about-text h2 {
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 15px;
    color: #112250;
}

.tagline {
    font-weight: 500;
    margin-bottom: 15px;
}

.about-text p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #112250;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    background: #1f4d6b;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1px;
    border-radius: 3px;
}

/* SERVICES SECTION */
.services {
    background: #2f4660;
    padding: 80px 0;
    color: #ffffff;
}

.services-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 50px;
    align-items: center;
}

.services-text h2 {
    font-size: 26px;
    margin-bottom: 20px;
}

.services-text p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 15px;
    opacity: 0.9;
}

.services-text .highlight {
    font-weight: 500;
    opacity: 1;
}

/* SERVICE CARDS */

.service-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.service-card:hover img {
    transform: scale(1.05);
}

.service-card .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  color: #ffffff;
  font-weight: 600;
}

.service-card .arrow {
  font-size: 24px;
  text-align: end;
}

.service-card span {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-align: justify;
}

/* SHOWPIECES SECTION */
.showpieces {
    background: #f5f0e9;
    padding: 70px 0 90px;
    text-align: center;
}

.showpieces h2 {
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 40px;
    color: #1f3b5b;
}

/* SLIDER WRAPPER */
.showcase-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

/* ARROWS */
.arrow {
    background: none;
    border: none;
    font-size: 30px;
    color: #1f3b5b;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.arrow:hover {
    transform: scale(1.2);
}

/* SLIDES */
.showcase-container {
    display: flex;
    gap: 40px;
}

.showcase-slide {
    width: 280px;
    height: 180px;
    background: #3d5573;
    display: none;
}

.showcase-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ACTIVE SLIDE */
.showcase-slide.active {
    display: block;
}

.showcase-slide {
    transition: opacity 0.5s ease;
}

.footer {
    background: #ffffff;
    padding: 50px 20px;
    font-family: 'Poppins', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: start;
}

/* BRAND SECTION */
.footer-brand {
    color: #706E6E;
}

.footer-logo {
    width: 280px;
    margin-bottom: 15px;
}

.footer-brand p {
    font-size: 12px;
    line-height: 1.6;
}

/* SERVICES */
.footer-links h4,
.footer-contact h4 {
    font-size: 16px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #112250;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
    font-size: 14px;
    color: #112250;
}

/* CONTACT */
.footer-contact p {
    font-size: 14px;
    margin-bottom: 10px;
    color: #112250;
}
 html, body{
    overflow-x: hidden;
 }
