*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #f8f9fa;
  color: #1b263b;
  line-height: 1.6;
  background-image: url("img/wood-texture.webp");
  background-attachment: fixed;
  background-size: cover;
  background-blend-mode: multiply;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3 {
  line-height: 1.2;
  font-weight: 700;
}

h1 {
  font-size: 2.8rem;
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: #0d1b2a;
}

h3 {
  font-size: 1.4rem;
  color: #0d1b2a;
}

section {
  padding: 60px 0;
}

.cta-button {
  background: url("img/dark-wood-texture.webp");
  color: #e0e1dd;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: transform 0.3s ease, background-color 0.3s ease;
  display: inline-block;
  border: none;
  cursor: pointer;
}
.cta-button:hover {
  background-color: #ffda57;
  transform: translateY(-3px);
}

/* Navbar */
.navbar {
  background-color: #fff;
  box-shadow: 3px 5px 5px rgba(113, 64, 44, 0.36);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding-bottom: 1px;
}
.navbar .container-fluid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  max-width: 80%;
}
.navbar .navbar-collapse {
  max-width: 500px;
}
.navbar .logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0d1b2a;
  text-decoration: none;
}
.navbar .logo img {
  width: 120px;
  margin-top: -11px;
}
.navbar .nav-links {
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar .nav-links li {
  margin-left: 25px;
}
.navbar .nav-links a {
  text-decoration: none;
  color: #1b263b;
  font-weight: 600;
  transition: color 0.3s ease;
}
.navbar .nav-links a:hover {
  color: #ffc300;
}
.navbar .nav-links a.nav-cta {
  background: url("img/dark-wood-texture.webp");
  color: #e0e1dd;
  padding: 10px 10px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}
.navbar .nav-links a.nav-cta:hover {
  background-color: #ffda57;
  color: #0d1b2a;
}

/* Hero Section */
.hero {
  position: relative;
  height: 80vh;
  background: url("img/hero-bg.webp") no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 0;
}
.hero h1 {
  margin-bottom: 0.5rem;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  font-weight: 400;
}
.hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(13, 27, 42, 0.7);
}
.hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

/* Services Section */
.services {
  text-align: center;
  background-size: 100%;
}
.services .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.services .service-card {
  background-color: #fff;
  padding: 40px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.services .service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.services .service-card h3 {
  margin-bottom: 1rem;
}
.services .service-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 1.5rem;
  color: #ffc300;
}

/* Portfolio Section */
.portfolio {
  background-color: #fff;
  text-align: center;
}
.portfolio .portfolio-subtitle {
  max-width: 600px;
  margin: 0 auto 40px auto;
}
.portfolio .portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
.portfolio .portfolio-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease, filter 0.3s ease;
}
.portfolio .portfolio-item img:hover {
  transform: scale(1.03);
  filter: brightness(1.1);
}

/* About Section */
.about-content {
  display: flex;
  align-items: center;
  gap: 50px;
}
.about-content p {
  margin-bottom: 1rem;
}
.about-content .profile-pic {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 5px solid #ffc300;
}

/* Contact Section */
.contact {
  background-color: #0d1b2a;
  color: #e0e1dd;
}
.contact h2 {
  text-align: center;
  color: #e0e1dd;
}
.contact p {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 1.1rem;
}
.contact .contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  background-color: #fff;
  color: #1b263b;
  padding: 40px;
  border-radius: 8px;
}
.contact .contact-info p {
  text-align: left;
  margin-bottom: 1rem;
  font-size: 1rem;
}
.contact .contact-info h3 {
  margin-bottom: 1.5rem;
}
.contact .contact-info a {
  text-decoration: none;
  color: #9d3a11;
  font-weight: 700;
}
.contact .contact-form h3 {
  margin-bottom: 1.5rem;
}
.contact .contact-form textarea,
.contact .contact-form input {
  resize: vertical;
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: "Poppins", sans-serif;
}
.contact .contact-icons img {
  max-width: 60px;
}
.contact ul.contact-icons {
  list-style: none;
  display: flex;
  gap: 1vw;
  justify-content: center;
  padding-left: 0;
}

.logo-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  width: 4vw;
}
.logo-whatsapp img {
  max-width: 100%;
}

/* Footer */
.footer {
  background: url("img/dark-wood-texture.webp") center center/cover;
  color: #fff;
  padding: 17px 0 1px 0;
  text-align: center;
  position: relative;
}

/* Swuiper */
.swiper {
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
}

.swiper-slide {
  background-position: center;
  background-size: cover;
  width: 300px;
  height: 300px;
}

.swiper-slide img {
  display: block;
  width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
  h1 {
    font-size: 2.2rem;
  }
  h2 {
    font-size: 1.8rem;
  }
  .navbar .container-fluid {
    max-width: 100%;
    height: auto;
  }
  .navbar .navbar-collapse {
    max-width: 100%;
  }
  .navbar .logo img {
    width: 75px;
    margin-top: -11px;
  }
  .logo-whatsapp {
    position: fixed;
    bottom: 8px;
    right: 6px;
    z-index: 999;
    width: 14vw;
  }
  .about-content {
    flex-direction: column;
    text-align: center;
  }
  .contact .contact-wrapper {
    grid-template-columns: 1fr;
    padding: 15px;
    gap: 18px;
  }
  .contact .contact .contact-icons img {
    max-width: 54px;
  }
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}/*# sourceMappingURL=style.css.map */