/* ================= GOOGLE FONTS ================= */
@import url("https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&display=swap");

/* ================= ROOT ================= */
:root {
  --dark: #0b0b0b;
  --gold: #f1c40f;
  --light: #f5f5f5;
}

html {
  width: 100%;
  overflow-x: hidden;
}

/* ================= BASE ================= */
body {
  margin: 0;
  padding: 0;
  font-family: "EB Garamond", serif;
  color: #444;
  line-height: 1.7;
}
/* body {
  padding: 0;
  margin: 0;
  font-family: "EB Garamond", serif;
  font-optical-sizing: auto;
  font-style: normal;
} */

h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
}
.container,
.container-fluid {
  overflow-x: hidden;
}

section {
  padding: 30px 0;
}
/* ===== NAVBAR BASE ===== */
.custom-nav {
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  transition: all 0.35s ease;
  padding: 10px 0;
}

/* LOGO */
.logo-img {
  height: 65px;
  width: auto;
}

.logo-text {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
}

.logo-text p {
  font-size: 13px;
  font-weight: 400;
  margin: 2px 0 0;
  color: #ddd;
}

/* NAV LINKS */
.nav-link {
  color: #fff !important;
  margin-left: 22px;
  font-size: 16px;
  position: relative;
}

/* Hover underline */
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #f1c40f;
  transition: 0.3s;
}

.nav-link:hover::after {
  width: 100%;
}
/* .navbar>.container{
  --bs-gutter-x: 2.5rem;
} */
/* Contact button */
.contact-btn {
  border: 1px solid #f1c40f;
  padding: 6px 16px;
  border-radius: 20px;
}

/* ===== SCROLLED STATE ===== */
.custom-nav.scrolled {
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.custom-nav.scrolled .nav-link,
.custom-nav.scrolled .logo-text {
  color: #000 !important;
}

.custom-nav.scrolled .logo-text p {
  color: #555;
}

/* Toggle icon color fix */
.custom-nav.scrolled .navbar-toggler {
  filter: invert(1);
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(201,162,77,1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
.custom-nav.scrolled .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(201,162,77,1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
/* ===== TOGGLER ===== */
.navbar-toggler {
  border: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* ===== MOBILE OFFCANVAS ===== */
.mobile-menu {
  width: 300px;
}

.mobile-menu .offcanvas-header {
  border-bottom: 1px solid #ddd;
}

.mobile-menu .offcanvas-title {
  font-family: "Playfair Display", serif;
  font-size: 18px;
}

.mobile-menu .offcanvas-title p {
  
  font-size: 12px;
  margin: 2px 0 0;
  color: #666;
}

.mobile-menu .nav-link {
  color: #000 !important;
  font-size: 16px;
  padding: 12px 0;
  margin-left: 0;
}
/* Hide desktop menu on mobile */
@media (max-width: 991px) {
  .navbar-collapse {
    display: none !important;
  }
}

/* ================= HERO SECTION ================= */
.hero {
  width: 100%;
  position: relative;
  overflow: hidden;
  background: #fff;
}

.hero .swiper,
.hero .swiper-wrapper,
.hero .swiper-slide {
  width: 100%;
}

.hero-slide {
  position: relative;
}

.hero-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  flex-direction: column;
  transition: opacity 0.4s ease;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  padding: 20px;
}

.overlay h1 {
  font-family: "Playfair Display", serif;
  font-size: 38px;
  font-weight: 500;
  margin-bottom: 10px;
}

.overlay p {
  font-size: 16px;
  letter-spacing: 1px;
}

.swiper-button-next,
.swiper-button-prev {
  color: #f1c40f;
}

@media (max-width: 768px) {
  .hero .swiper,
  .hero .swiper-wrapper,
  .hero .swiper-slide {
    height: 45vh;
  }
  .overlay h1 {
    font-size: 20px;
    line-height: 1.3;
  }

  .overlay p {
    font-size: 13px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
}

/* ===== CATEGORY CLEAN PREMIUM UI ===== */

.category-section {
  padding: 50px 0;
}

.category-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
}

/* Image – normal color */
.category-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid #0b0b0b;
  transition: transform 0.6s ease;
}

/* Overlay */
.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.45s ease;
}

/* Title */
.category-overlay h5 {
  color: #fff;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Hover effect */
.category-card:hover img {
  transform: scale(1.08);
}

.category-card:hover .category-overlay {
  opacity: 1;
}

/* Mobile */
@media (max-width: 768px) {
  .category-card img {
    height: 140px;
  }
}

/* ======project====== */

.projects-section {
  padding: 30px 10px 30px 10px;
  background: #fff;
}

.section-title {
  font-weight: 600;
  letter-spacing: 1px;
}

.section-title::after {
  content: "";
  width: 70px;
  height: 2px;
  background: #f1c40f;
  display: block;
  margin: 14px auto 0;
}

/* Card */
/* ===== PROJECT IMAGE BLACK & WHITE EFFECT ===== */

.project-card {
  display: block;
  text-decoration: none;
}

.project-img {
  position: relative;
  overflow: hidden;
  border-radius: 0px;
}

/* Default: Black & White */
.project-img img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  filter: grayscale(100%);
  transition: all 0.7s ease;
}

/* Hover: Color + Zoom */
.project-card:hover .project-img img {
  filter: grayscale(0%);
  transform: scale(1.08);
}

/* Overlay */
.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.25));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}

/* Title */
.project-overlay h5 {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

/* CTA Text */
.project-overlay span {
  color: var(--gold, #f1c40f);
  font-size: 13px;
  letter-spacing: 1px;
  opacity: 0;
  transition: 0.4s ease;
}

/* Show CTA on Hover */
.project-card:hover .project-overlay span {
  opacity: 1;
}

/* Mobile Optimization */
@media (max-width: 768px) {
  .project-img img {
    height: 240px;
  }
}

/* ====project-detail===== */
.project-detail {
  padding: 50px 0;
}

.project-detail h2 {
  margin-bottom: 20px;
  font-weight: 600;
}

.project-intro {
  max-width: 800px;
  margin-bottom: 40px;
  color: #555;
  line-height: 1.7;
}

.project-gallery img {
  width: 100%;
  border-radius: 6px;
  object-fit: cover;
}

/* ========service======= */
.services {
  background: var(--dark);
  color: #fff;
}

/* Make columns equal height */
.services .row {
  display: flex;
  flex-wrap: wrap;
}

.services .col-md-6 {
  display: flex;
}

/* Service Card */
.service-item {
  display: flex;
  gap: 20px;
  background: #fff;
  color: #000;
  padding: 22px;
  width: 100%;
  height: 100%; /* 🔥 KEY POINT */
  align-items: stretch;
}

/* Image */
.service-item img {
  width: 45%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

/* Content */
.service-item > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-item h4 {
  font-weight: 600;
  margin-bottom: 10px;
}

.service-item p {
  font-size: 16px;
  text-align: left;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
  .services .col-md-6 {
    display: block;
  }

  .service-item {
    flex-direction: column;
  }

  .service-item img {
    width: 100%;
    height: 220px;
  }
}

/* =======contact========= */
.contact-section {
  padding: 80px 0;
  background: #f8f8f8;
}

.contact-section h2 {
  margin-bottom: 25px;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
}

.contact-form button {
  background: #000;
  color: #fff;
  border: none;
  padding: 12px 30px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #444;
}

.contact-section p {
  font-size: 15px;
  color: #444;
  line-height: 1.7;
}

.contact-section a {
  color: #000;
  text-decoration: none;
}

.contact-icons {
  margin-top: 20px;
}

.contact-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border: 1px solid #000;
  border-radius: 50%;
  margin-right: 10px;
  color: #000;
  transition: 0.3s;
}

.contact-icons a:hover {
  background: #000;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-section {
    text-align: center;
  }
}
/* ===========footer======= */
/* ================= FOOTER ================= */

.footer {
  background: #0b0b0b;
  color: #b5b5b5;
  padding: 70px 0 25px;
  font-size: 14px;
}

.footer-logo-img {
  height: 42px;
}

.footer-logo-text {
  font-family: "Playfair Display", serif;
  color: #fff;
  margin: 0;
  letter-spacing: 1px;
}

.footer-about {
  max-width: 360px;
  line-height: 1.8;
}

.footer-title {
  color: #f1c40f;
  font-size: 16px;
  margin-bottom: 18px;
  font-weight: 500;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #b5b5b5;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #f1c40f;
}

/* Social Icons */
.footer-social {
  margin-top: 15px;
}

.footer-social a {
  display: inline-flex;
  width: 38px;
  height: 38px;
  border: 1px solid #333;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: #b5b5b5;
  margin-right: 10px;
  transition: 0.3s;
}

.footer-social a:hover {
  background: #f1c40f;
  color: #000;
  border-color: #f1c40f;
}

/* Bottom */
.footer-bottom {
  border-top: 1px solid #222;
  margin-top: 40px;
  padding-top: 15px;
  font-size: 13px;
  color: #888;
}

/* Responsive */
@media (max-width: 768px) {
  .footer {
    text-align: center;
  }

  .footer-about {
    margin: 0 auto;
  }

  .footer-social {
    justify-content: center;
  }
}

/* Floating Buttons */
.float-btn {
  position: fixed;
  right: 20px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 999;
  font-size: 22px;
}

.float-btn.whatsapp {
  bottom: 90px;
  background: #25d366;
}

.float-btn.call {
  bottom: 30px;
  background: #f1c40f;
  color: #000;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-section {
    text-align: center;
  }
}
