/* Custom Styles */
body {
    padding-top: 60px; /* Adjust based on navbar height */
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
    color: #333;
}
  
.container{
    padding: 0px;
}
  
.icon {
      width: 40px;
      height: 40px;
      margin-left: 50px;
      filter: invert(1); /* Makes dark icons white */
      transition: filter 0.3s ease-in-out;
}
  
.icon:hover {
      filter: invert(61%) sepia(98%) saturate(310%) hue-rotate(4deg) brightness(92%) contrast(88%);
}
  
  /* Default state (black icon) */
.icon.black {
      filter: brightness(0) saturate(100%);
      margin-left: 10px;
}
  
  /* Hover effect */
.icon.black:hover {
      filter: invert(61%) sepia(98%) saturate(310%) hue-rotate(4deg) brightness(92%) contrast(88%);
}
  
.social-icons a {
      text-decoration: none; /* Remove underline */
      color: inherit; /* Inherit text color from parent */
}
  
  .navbar {
    position: fixed;
    background-color: #c09b4c; /* Gold theme */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000; /* Ensures it stays on top */
  }
  
  .navbar-brand {
    display: flex;
    align-items: left; /* Ensures vertical alignment */
    font-size: 1.5rem;
  }
  
  .hero-section {
    background-color: #0d0635;
    color: white;
    text-align: center;
    padding: 100px 20px;
  }

  /* Carosel */
  .carousel-control-prev-icon,
  .carousel-control-next-icon {
      filter: invert(58%) sepia(77%) saturate(558%) hue-rotate(1deg) brightness(97%) contrast(89%);
  }
  
  /* Projects Section */
  #projects {
      background-color: #ffffff; /* Light background for contrast */
      padding: 20px 0px;
  }
    
  #projects h2 {
      color: #2C3E50;
      text-align: center;
      font-size: 2rem;
      font-weight: bold;
      margin-bottom: 40px;
  }
  
  .feature {
      background: #0000111c;
      border-radius: 10px;
      padding: 30px;
      min-height: 400px;
      box-sizing: border-box;
      text-align: center;
      transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  }
    
  .feature:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  }
    
  .feature-icon {
      width: 60px;
      height: 60px;
      background: #0d0635; /* Gold theme */
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 15px;
  }
  
  .feature-icon img {
      width: 50px; /* Adjust size as needed */
      height: 50px;
      
  }
    
  .feature h3 {
      color: #2C3E50;
      font-size: 1.5rem;
      margin-bottom: 10px;
  }
    
  .feature p {
      color: #555;
      font-size: 1rem;
      margin-bottom: 20px;
  }
    
  .feature a.btn-primary {
      background-color: #c09b4c;
      border: none;
      padding: 10px 20px;
      margin-bottom: 25px;
      font-weight: bold;
      transition: background 0.3s ease-in-out;
  }
    
  .feature a.btn-primary:hover {
      background-color: #a8873b;
  }
    
  .feature a.icon-link {
      display: inline-flex;
      align-items: center;
      text-decoration: none;
      font-weight: bold;
      color: #2C3E50;
      margin-top: 10px;
      transition: color 0.3s ease-in-out;
  }
    
  .feature a.icon-link:hover {
      color: #c09b4c;
  }
    
  .feature a.icon-link svg {
      margin-left: 5px;
      width: 16px;
      height: 16px;
      fill: currentColor;
  }
  
  .contact {
    background-color: #0d0635;
    color: white;
    text-align: center;
    padding: 50px 20px;
  }
  
.accordion-button {
  color: #0d0635;
  background-color: white;
  transition: color 0.3s ease, box-shadow 0.3s ease;
}

.accordion-button:not(.collapsed) {
  color: #72581f;
  background-color: #d4ac5570;
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(192, 155, 76, 0.5);
  border-color: #c09b4c;
}




  