
    body {
        margin: 0;
         background-color: #e9e4db;
            font-family: 'Georgia', serif;
      
    }

    .custom-navbar {
        background-color:rgba(79, 3, 3, 0.87); /* maroon */
        padding: 15px 40px;
    }

    .navbar-brand img {
        width: 60px;
        height: 60px;
    }

    .nav-center {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .nav-link {
        color: #fff !important;
        margin: 0 20px;
        font-size: 18px;
    }

    .nav-link.active {
        color: #f4c27a !important; /* gold */
        font-weight: 500;
    }

    .nav-link:hover {
        color: #f4c27a !important;
    }

    /* bottom light gold line */
    .bottom-line {
        height: 5px;
        background: linear-gradient(to right, #c08a5d, #f4c27a);
    }


    /* Background */
/* body {
    background-color: #e9e6dd;
} */

/* Welcome section */
.welcome-section {
    padding: 60px 20px 20px;
}

.welcome-title {
    color: #6b2b2b;
    font-size: 48px;
    font-family: Georgia, serif;
}

.welcome-text {
    margin-top: 10px;
    font-size: 18px;
    color: #333;
}

/* Product section */
.product-section {
    padding: 40px 60px;
}

.product-card {
    border-radius: 12px;
    overflow: hidden;
    background: #d8cfc4;
    padding: 8px;
    transition: 0.3s;
}

.product-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 10px;
}

.product-card:hover {
    transform: scale(1.03);
}


/* About Section Background */
.about-wrapper {
    background-color: #cfc4bb;
    padding: 40px 0;
}

/* Border Box */
.about-box {
    border: 4px double #6b2b2b;
    padding: 40px;
}

/* Title */
.about-title {
    color: #6b2b2b;
    font-size: 40px;
    font-family: Georgia, serif;
    margin-bottom: 20px;
}

/* Text */
.about-text {
    font-size: 16px;
    color: #333;
    line-height: 1.8;
    text-align: justify;
}

/* Button */
.read-btn {
    margin-top: 20px;
    background-color: #6b2b2b;
    color: #fff;
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    cursor: pointer;
}

.read-btn:hover {
    background-color: #4a1d1d;
}

/* Image Box */
.about-image-box {
    background-color: #000;
    padding: 20px;
}

.about-image-box img {
    width: 100%;
    height: auto;
}

/* Work Section */
.work-section {
    /* background-color: #e9e6dd; */
    padding: 60px 20px;
}

/* Title */
.work-title {
    color: #6b2b2b;
    font-size: 42px;
    font-family: Georgia, serif;
    margin-bottom: 15px;
}

/* Description */
.work-text {
    max-width: 900px;
    margin: auto;
    font-size: 16px;
    color: #333;
    line-height: 1.8;
    margin-bottom: 40px;
}

/* Cards */
.work-card {
    border-radius: 12px;
    overflow: hidden;
    background: #d8cfc4;
    padding: 6px;
    transition: 0.3s;
}

.work-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 10px;
}

.work-card:hover {
    transform: scale(1.05);
}

/* View More */
.view-more {
    font-size: 20px;
    color: #6b2b2b;
    font-weight: 500;
    text-decoration: underline;
}

.view-more:hover {
    color: #4a1d1d;
}


.site-footer {
  background-color: #5c1f1b; /* Deep burgundy background */
  color: #ffffff;
  padding: 60px 20px 20px;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-column {
  flex: 1;
  min-width: 250px;
}

/* Typography */
.footer-column h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-column p {
  font-size: 0.95rem;
  opacity: 0.9;
}

/* Logo & Socials */
.footer-logo {
  width: 60px;
  margin-bottom: 20px;
}

.social-icons a {
  color: #ffffff;
  margin-right: 15px;
  font-size: 1.2rem;
  transition: opacity 0.3s;
}

.social-icons a:hover {
  opacity: 0.7;
}

/* Navigation Links */
.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
}

/* Contact Specifics */
.contact p i {
  margin-right: 10px;
}

/* Bottom Bar */
.footer-bottom {
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  position: relative;
}

.back-to-top {
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: #007bff; /* Blue button from image */
  color: white;
  padding: 10px 12px;
  border-radius: 4px;
  text-decoration: none;
}

/* Responsive adjustment */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: left;
  }
}