:root {
  --base: #6b1b0f;
  --contrast: #ffffff;
}

/* General layout */
body {
  scroll-behavior: smooth;
  padding-top: 70px;
}

section {
  min-height: 80vh;
  padding: 60px 0;
  scroll-margin-top: 70px;
}

/* Hero */
#first-section {
  background-color: var(--base);
}

/* Navbar */
.navbar-nav .nav-link {
  color: var(--base);
  transition: all 0.3s ease;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  background-color: var(--base);
  color: var(--contrast) !important;
  border-radius: 6px;
}

.navbar-logo {
  height: 55px;
  width: auto;
  object-fit: contain;
  margin-top: -5px;
  margin-bottom: -5px;
  margin-left: 20px;
}

/* Cards */
.card {
  --bs-card-border-color: none
}

.card-header {
  background-color: var(--base);
  color: var(--contrast);
  font-weight: 600;
  height: 80px; /* Set a fixed height */
  display: flex; /* Use flexbox */
  align-items: center; /* Vertically center */
  justify-content: center; /* Horizontally center */
  text-align: center; /* Just in case */
}

.card-body {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-shadow: none;
}
/* Contact Form */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

/* Responsive tweaks */
@media (min-width: 992px) {
  .navbar-nav {
    width: 600px;
  }
  .navbar-nav a {
    margin-right: 20px;
  }
}

.carousel {
  position: relative;
  overflow: visible; /* allow controls to go outside */
}

.carousel-control-prev,
.carousel-control-next {
  width: 5%; /* make them narrower */
}

.carousel-control-prev {
  left: -60px; /* move left button outside */
}

.carousel-control-next {
  right: -60px; /* move right button outside */
}

/* Optional: make the icons more visible */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: var(--base);
  border-radius: 50%;
  padding: 10px;
}

 #services   {
  height: 100%;
  background-image: url('images/d105495d-9bb5-468d-aaad-c46741b6f9aa.jpeg');
  background-size: cover; 
  background-position: center;
  background-attachment: fixed; 
  display: flex;
  color: white;
  text-shadow: 0 2px 5px rgba(0,0,0,0.6);
}
.circle-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  display: inline-block;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  border: 3px solid white;  
}

.circle-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- CIRCLES --- */
.circle-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  border: 3px solid white;
  flex-shrink: 0;
  margin-right: 10px; /* 👈 reduces gap between circle and text */
}

.circle-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

#us {
  background: linear-gradient(to right, #f9f9f9, #ffffff);
}

/* --- TEXT SPACING --- */
#us .row {
  --bs-gutter-x: 0.75rem; /* smaller Bootstrap column gap (default is 1.5rem) */
}

#us h5 {
  margin-bottom: 0.3rem;
}

#us p {
  margin-bottom: 0;
}

/* --- Contact Section --- */

/* --- Contact Section --- */
#contact {
  background-color: var(--base);
  color: var(--contrast);
}

#contact h2 {
  color: var(--contrast);
}

.contact-info {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--contrast);
}

.contact-info a {
  color: var(--contrast);
  font-weight: 600;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* --- Form --- */
.contact-form {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  color: var(--contrast);
}

.contact-form .form-label {
  color: var(--contrast);
}

.contact-form .form-control {
  background-color: rgba(255, 255, 255, 0.15);
  border: none;
  color: var(--contrast);
}

.contact-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.contact-form .form-control:focus {
  outline: none;
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.4);
}

.contact-form .btn {
  background-color: var(--contrast);
  color: var(--base);
  border: none;
}

.contact-form .btn:hover {
  background-color: #f1f1f1;
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
  #contact .row {
    text-align: center;
  }

  .contact-info {
    margin-bottom: 30px;
  }
}

/* --- RESPONSIVE TWEAKS --- */
@media (max-width: 768px) {
  .circle-image {
    width: 110px;
    height: 110px;
    margin-right: 0; /* center images on mobile */
    margin-bottom: 10px; /* add space below image when stacked */
  }
}