body {
  font-family: "Poppins", sans-serif;
  background-color: #F4F6F7;
  color: #333;
  scroll-behavior: smooth;

}

/* Navbar Styling */
.navbar {
  background-color: #121212 !important;
  transition: all 0.3s ease-in-out;
}

.navbar-brand span {
  color: #FF9800;
  letter-spacing: 1px;
}

.nav-link {
  color: #F4F6F7 !important;
  margin: 0 8px;
  transition: color 0.2s ease;
}

.nav-link:hover, 
.nav-link.active {
  color: #FF9800 !important;
}

.navbar.scrolled {
  background-color: #1B5E20 !important;
}



/* Hero Section - Dark Overlay + Better Text Visibility */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), 
              url('../img/hero.jpg') center/cover no-repeat;
  background-blend-mode: darken;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

/* Optional: Add subtle text shadow for extra readability */
.hero h1, .hero p {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.hero h1 {
  color: #FF9800;
  font-family: "Playfair Display", serif;
  font-weight: 700;
}

.hero p {
  color: #F4F6F7;
  font-weight: 400;
}
/* Section Titles */
.section-title {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  color: #1B5E20;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  width: 60%;
  height: 3px;
  background: #FF9800;
  bottom: -8px;
  left: 20%;
  border-radius: 2px;
}

/* Buttons */
.btn-primary {
  background-color: #FF9800;
  border: none;
}

.btn-primary:hover {
  background-color: #D84315;
}

/* Team Cards */
.team-card {
  border: none;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.team-card h5 {
  color: #1B5E20;
  font-weight: 600;
}

/* Footer */
footer {
  background-color: #121212;
  color: #F4F6F7;
}

footer a {
  color: #FF9800;
  text-decoration: none;
}

footer a:hover {
  color: #D84315;
}

/* Footer (Unified Background) */
.footer {
  background-color: #121212; /* One single elegant dark tone */
  color: #F4F6F7;
}

.footer-link {
  color: #F4F6F7;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: #FF9800;
}

.footer h5 {
  letter-spacing: 0.5px;
}

.footer .social-icons a {
  color: #F4F6F7;
  font-size: 18px;
  transition: color 0.3s ease, transform 0.2s;
}

.footer .social-icons a:hover {
  color: #FF9800;
  transform: scale(1.1);
}

.footer hr {
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* Premium Modal Styling */
.modal-premium {
  background: linear-gradient(135deg, #121212 60%, #1B5E20 100%);
  color: #F4F6F7;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  padding: 10px 5px;
}

.modal-premium .modal-header {
  border-bottom: none;
}

.modal-premium img {
  border-radius: 10px;
  border: 3px solid #FF9800;
}

.modal-premium .btn-close-white {
  filter: invert(1);
}

.modal-premium p {
  font-size: 0.95rem;
}

.clickable {
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.clickable:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}


/* Team Page Enhancements */
.team-card {
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  transition: all 0.3s ease;
}


/* Default for all team images */
.team-card img {
  height: 350px;
  object-fit: cover;
  width: 100%;
}

/* Override ONLY for Arnold's image */
#arnoldModal .modal-body img,
.card .clickable[alt="Arnold - CEO"] {
  height: auto !important;
  max-height: 400px;
  object-fit: contain !important;
  object-position: top center;
  background: #f8f9fa;
  padding: 10px;
  border-radius: 10px;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.team-card h4, 
.team-card h5 {
  color: #1B5E20;
}

.team-card p.text-muted {
  font-size: 0.95rem;
}

/* Arnold Highlight */
.team-card:first-child {
  border-top: 4px solid #FF9800;
}
