.custom-shrink {
  max-width: 80%!important;  /* or 95% or any value less than 100% */
  margin: 0 auto;  /* keep it centered */
}

.gallery {
  column-count: 3;
  column-gap: 1em;
}
.gallery img {
  width: 100%;
  break-inside: avoid;
  margin-bottom: 1em;
  border-radius: 8px;
}

p-custom{
  text-align: justify;
}

/*
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}
.gallery img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
}
*/

/*
.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.gallery img {
  max-height: 300px;
  width: auto;
  object-fit: contain;
  border-radius: 8px;
}
*/

.hero {
  background: #000;
  color: #fff;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
}
.portfolio img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

header{
  padding-top: 3rem;
}

body{
  font-family: 'Arimo', sans-serif!important;
  background: #ffffff;
  min-height: 900px;
  position: relative;
  background-size: cover;
}

.navbar-nav{
  font-size: 18px;
}

.h3{
  font-size: 1.75rem;
}

footer{
  background: #f8f8f8;
}

  /* General icon style */
  .social-icon {
    color: #333;
    transition: color 0.3s ease;
    font-size: 1.5rem;
    margin-right: 15px;
  }


  /* Navigation pill hover colors */
  .social-icon.facebook:hover { color: #3b5998; }     /* Facebook Blue */
  .social-icon.instagram:hover { color: #C13584; }    /* Instagram Pink */
  .social-icon.twitter:hover { color: #1DA1F2; }       /* Twitter Blue */
  .social-icon.youtube:hover { color: #FF0000; }       /* YouTube Red */

/*Damon logo blue color*/
#0092de




/* Custom Pill Base */
.nav-pills .nav-link {
  border: 1px solid #917c55!important;
  background-color: #0092de!important;
  color: #000!important;
  transition: background-color 0.3s, color 0.3s;
  /*margin-right: 10px;*/
}

/* Hover Effect */
.nav-pills .nav-link:hover {
  background-color: #0092de!important;
  color: #fff!important;
}

/* Active/Selected Pill */
.nav-pills .nav-link.active {
  background-color: #0092de!important;
  color: #fff!important;
  border-color: #0092de!important;
}




.pill-spacing{
  display: inline-block;
  margin: 0 10px 6px 0;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 3px;
}

.btn-golden{
    color: #917c55;
    border-color: #917c55;
}

.content-section{
  padding-top: 4rem;
}


/*about bars*/
    .bar-container {
      max-width: 600px;
      margin: 0 auto;
      padding: 20px;
      font-family: Arial, sans-serif;
    }

    .bar-label {
      font-weight: bold;
      margin-bottom: 5px;
    }

    .progress-bar {
      background-color: #fff;
      border: 1px solid #0092de;
      border-radius: 25px;
      overflow: hidden;
      height: 25px;
      margin-bottom: 20px;
    }

    .progress-fill {
      height: 100%;
      background-color: #0092de;
      text-align: right;
      padding-right: 10px;
      line-height: 25px;
      color: #fff;
      font-size: 14px;
      transition: width 0.5s ease-in-out;
    }

    @media (max-width: 576px) {
      .bar-label {
        font-size: 14px;
      }
      .progress-fill {
        font-size: 12px;
      }
    }


/*About bars ends here*/