 /* Navbar link hover */
 .navbar-light .navbar-nav .nav-link {
  color: #000;
  margin: 0 15px;
  font-weight: 500;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: #8d5d2f; /* Slight brown accent */
}
/* Base Menu Style */
ul > li {
    list-style: none;
    display: block;
    position: relative;
}

header ul {
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

header ul > li > a {
    color: #000;
	padding:7px 15px;
}
header  ul > li > a:hover{
	color:#000;
	text-decoration:none;
}
header ul > li:hover ul {
    display: block;
}

/* Dropdown Style */
  

a{
	text-decoration:none;
	color:#fff;
}
/* Hero Banner */
.hero-container {
  position: relative;
  height: 90vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 5%;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 0;
}

.hero-content {
  z-index: 1;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.hero-tagline {
  font-size: 1.8rem;
  font-family: 'Roboto Serif', serif;
  margin: 0;
  font-style: italic;
  line-height: 1.5;
}

.hero-title {
  font-size: 4.5rem;
  font-weight: bold;
  line-height: 1.1;
  font-family: 'Montserrat', sans-serif;
}

.hero-subtext {
  font-size: 1.25rem;
  font-family: 'Roboto Serif', serif;
  opacity: 0.9;
}

.hero-button {
  margin-top: 1rem;
}

.download-btn {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #000000;
  font-size: 16px;
  font-family: 'Lora', serif;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  border: none;
}

/* Responsive styles */
@media (max-width: 1200px) {
  .hero-tagline {
    font-size: 1.5rem;
  }

  .hero-title {
    font-size: 3.5rem;
  }

  .hero-subtext {
    font-size: 1.125rem;
  }
}

@media (max-width: 768px) {
  .hero-tagline {
    font-size: 1.2rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtext {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-tagline {
    font-size: 1rem;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-subtext {
    font-size: 0.875rem;
  }
}
/* Feature Section Styles */
/* #features .feature-icon {
  filter: brightness(0) saturate(100%) invert(22%) sepia(48%) saturate(423%) hue-rotate(5deg) brightness(93%) contrast(90%);
} */

#features .feature-text {
  font-size: 1rem;
  color: #2d2d2d;
  font-weight: 500;
  max-width: 90%;
  margin: 0 auto;
  line-height: 1.5;
}
  
/* Complete Our Story Section Styles */
.our-story-section {
  width: 100%;
  overflow: hidden;
}

/* Top Section */
.our-story-top {
  background-color: #f9f6f2;
}

.story-content-col {
  display: flex;
  align-items: center;
}

.story-content-wrapper {
  padding: 3rem;
}

.our-story-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 80px;
  font-weight: 600;
  color: #4F3114;
  margin-bottom: 1rem;
}

.our-story-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  margin-bottom: 1.5rem;
  font-weight: normal;
  color: #1d1d1d;
}

.our-story-paragraph {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
}

.our-story-image {
  background-size: cover;
  background-position: top;
  width: 100%;
  min-height: 600px;
}

/* Bottom Section (Capabilities) */
.our-story-bottom {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  min-height: 800px;
  background-size: cover;
  background-position: top;
  position: relative;
}

.our-story-background {
  background-size: cover;
  background-position: top;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
  filter: brightness(0.8);
}

.our-story-overlay {
  background: rgba(164, 100, 40, 0.4);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 55%;
}

.capabilities-content-wrapper {
  position: relative;
  width: 100%;
  z-index: 1;
}

.our-story-capabilities-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 80px;
  font-weight: 600;
  color: #4F3114;
  margin-bottom: 2rem;
  text-align: left;
}

.capabilities-text-container {
  width: 50%;
  margin-left: auto;
  padding: 2rem;
  color: #fff;
}

.our-story-capabilities-text {
  font-size: 20px;
  color: #fff;
  line-height: 1.6;
  white-space: pre-line;
  margin: 0;
}

.our-story-capabilities-text p {
  margin-bottom: 1.5rem;
}

/* Responsive styles */
@media (max-width: 767px) {
  .story-content-wrapper {
    padding: 1.5rem;
  }
  
  .our-story-title {
    font-size: 36px;
  }
  
  .our-story-subtitle {
    font-size: 18px;
  }
  
  .our-story-paragraph {
    font-size: 14px;
  }
  
  .our-story-image {
    min-height: 250px;
  }
  
  .our-story-bottom {
    min-height: auto;
    padding: 2rem 1rem;
  }
  
  .our-story-overlay {
    width: 100%;
  }
  
  .our-story-capabilities-title {
    font-size: 28px;
    text-align: left;
    margin-bottom: 1.5rem;
  }
  
  .capabilities-text-container {
    width: 100%;
    padding: 1.2rem;
    margin-left: 0;
  }
  
  .our-story-capabilities-text {
    font-size: 14px;
    padding-left: 0;
  }
}
.products-section {
  background-color: #fff;
}

.product-card {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}

.product-card img {
  width: 100%;
  height: 300px;
  display: block;
}

.product-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(180, 132, 76, 0.9); /* Brownish overlay */
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
}

.product-text {
  line-height: 1.2;
}

.product-arrow {
  font-size: 1.5rem;
  color: #fff;
}
.infrastructure-section {
  background-image: url('images/infrastructure-bg.jpg'); /* Use your background image */
  background-size: cover;
  background-position: center;
  position: relative;
  color: #fff;
  padding: 100px 0;
}

.infrastructure-overlay {
  background: rgba(0, 0, 0, 0.5); /* Dark overlay for readability */
  padding: 60px 20px;
}

.infrastructure-section h2 {
  font-size: 3rem;
  font-weight: bold;
}

.infrastructure-section p {
  font-size: 1.25rem;
  max-width: 1000px;
  margin: 0 auto;
}

.infrastructure-section .btn {
  border: 2px solid #fff;
  padding: 10px 25px;
  font-weight: 600;
}
.original-leather-section {
  background-color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.original-leather-section .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.original-leather-section .text-content {
  font-family: serif;
  color: #111;
}

.original-leather-section .percentage {
  font-size: 8rem;
  margin: 0;
  font-weight: 500;
}

.original-leather-section .tagline {
  font-size: 3.5rem;
  margin: 0;
  font-weight: 400;
}

.original-leather-section .image-content img {
  max-width: 350px;
  height: auto;
  object-fit: contain;
}
.leather-varieties-section {
  background-color: rgb(217, 195, 174);
  padding: 80px 20px;
  font-family: 'Segoe UI', sans-serif;
  color: #2c1c0e;
}

.leather-varieties-section .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

.leather-varieties-section .section-title {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.leather-varieties-section .intro {
  font-size: 1.2rem;
  margin-bottom: 25px;
  max-width: 600px;
}

.leather-varieties-section .leather-types {
  list-style: none;
  padding: 0;
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 638px;
  width: 100%;
}

.leather-varieties-section .leather-types li {
  margin-bottom: 15px;
}

.leather-varieties-section .leather-types strong {
  font-weight: 700;
}

.leather-varieties-section .image-content img {
  max-width: 350px;
  height: auto;
  object-fit: contain;
}
/* Footer Container */
.footer-container {
    background-color: #e7dfd1;
    padding-top: 50px;
}

/* Content Container */
.footer-content {
    margin: 0 auto;
    max-width: 1350px;
    padding: 1rem;
}

/* Footer Row */
.footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

/* Footer Columns */
.footer-col {
    margin-bottom: 2rem;
    width: 100%; /* Default width for smaller screens */
}

@media (min-width: 768px) {
    .footer-col-logo {
        width: 30%;
    }

    .footer-col-links {
        width: 40%;
    }

    .footer-col-follow {
        width: 25%;
        text-align: right; /* Align follow us content to the right on larger screens */
    }
}

/* Quick Links Title */
.footer-quick-links-title {
    color: #A46428;
    font-family: "Roboto Serif", serif;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 1rem;
}

/* Footer Links Row */
.footer-links-row {
    display: flex;
    flex-wrap: wrap;
}

/* Footer Links Columns */
.footer-links-col {
    width: 50%;
}

/* Quick Links List */
.footer-quick-links-list {
    padding-left: 0;
    margin: 0;
}

.footer-quick-links-item {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 28px;
    color: #1E1E1E;
}

/* Social Media Icons */
.footer-social-media {
    font-size: 20px;
    margin-bottom: 1rem;
}

.footer-social-media .icon {
    margin-right: 1rem;
    color: #A46428; /* Example color for icons */
}

.footer-social-media .icon i { /* Target the actual Font Awesome icon */
    display: inline-block; /* Ensure visibility */
}

.footer-social-media .icon:hover {
    color: #804a1d; /* Darker shade on hover */
}

/* Download Button */
.download-btn {
    border: 1px solid #000000;
    color: #1E1E1E;
    font-size: 18px;
    font-family: 'Roboto Serif', serif;
    font-weight: 500;
    padding: 6px 16px;
    background: transparent;
    cursor: pointer;
    display: inline-block; /* Ensure proper styling */
}

.download-btn:hover {
    background-color: #f0f0f0; /* Light background on hover */
}

/* Bottom Bar */
.footer-bottom-bar {
    margin-top: 2rem;
    background-color: #A46428;
    text-align: center;
    padding: 0.8rem;
    font-size: 12px;
    color: #fff;
    font-family: "Montserrat", sans-serif;
}

/* General styling for the footer links */
.footer-quick-links-link {
    color: #1E1E1E;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    text-decoration: none; /* Remove underline */
}

/* Optional: Add hover effect for better interaction */
.footer-quick-links-link:hover {
    color: #000000; /* You can change the color on hover */
    text-decoration: underline; /* Optional: Add underline on hover */
}

.footer-description-text {
    color: #1E1E1E;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
}

/* Style for contact information */
.footer-contact {
    color: #1E1E1E;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    margin-bottom: 0.5rem;
}

.intro {
      font-size: 1.1rem;
      line-height: 1.6;
      margin-bottom: 30px;
      text-align: justify;
    }

    table {
      width: 100%;
      border-collapse: collapse;
      background-color: #fff;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    th, td {
      padding: 14px 16px;
      border-bottom: 1px solid #e0e0e0;
      text-align: left;
    }

    th {
      background-color: #333;
      color: #fff;
    }

    tr:hover {
      background-color: #f1f1f1;
    }

    @media (max-width: 600px) {
		header ul, header ul > li {
     
    display: block;
    
}
		header ul {
    
    background: #e1d4c6;
    padding: 20px 0px;
}
header ul > li > a {
 
    padding: 6px 15px;
    display: block;
    font-size: 22px;
}		
		ul.dropdown-menu {
    width: 100%;
}
      table, thead, tbody, th, td, tr {
        display: block;
      }

      th {
        display: none;
      }

      td {
        position: relative;
        padding-left: 50%;
        border: none;
        border-bottom: 1px solid #eee;
      }

      td::before {
        content: attr(data-label);
        position: absolute;
        left: 16px;
        font-weight: bold;
        color: #666;
      }
    }
.product-details p {
    display: flex
;
     
    flex-wrap: wrap;
}

header ul {
    min-width: 335px !important;
}

header ul > li > a {
    padding: 7px 15px;
    display: block;
}

 