body {
  line-height: 1.3;
  margin: 0;
  font-family: Arial, sans-serif;
  font-size: 1.2 rem;
  background: #111;
  color: #fff;
}

header {
  background: #000;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
}

#about {
  text-align: justify;
  margin: 0 20px;
}

.logo {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.logo img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 5px solid white;
  object-fit: cover;
  text-align: center;
}

.name {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 15px;
  color: orange;
  font-weight: bold;
  font-size: 20px;
  text-align: center;
}

.call-box {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 2px solid white;
  border-radius: 20px;
  padding: 5px 12px;
  margin-left: 8px;
  color: orange;
  text-decoration: none;
  transition: 0.3s;
}

.call-box:hover {
  background: orange;
  color: white;
  border-color: black;
}

nav a {
  color: #fff;
  margin: 0 10px;
  text-decoration: none;
}

nav a:hover {
  color: orange;
}

.hero {
  padding: 20px;
  text-align: center;
}

.hero h1 {
  font-size: 25px;
}

.supplies {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.supplies img {
  height: 250px;
  border: 5px solid white;
  object-fit: cover;
  text-align: center;
}

.btn {
  background: orange;
  border: 3px solid white;
  border-radius: 10px;
  text-decoration: none;
  padding: 5px 5px;
  color: #000;
  display: inline-block;
  margin: 1px;
}

.section {
  padding: 15px 15px;
}

/* ===== SOCIAL ICONS ONLY ===== */
.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  padding: 20px;
}

/* REMOVE DEFAULT LINK BLUE */
.social-icons a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  background: #222;
  border-radius: 50%;
  text-decoration: none;
  transition: 0.3s;
  color: orange; /* 👈 IMPORTANT */
}

/* ICON SIZE */
.social-icons i {
  font-size: 30px; /* slightly bigger */
  color: inherit; /* 👈 follows parent color */
}

/* HOVER EFFECT */
.social-icons a:hover {
  background: #111;
  color: blue; /* 👈 icon turns blue */
}

/* MOBILE */
@media (max-width: 480px) {
  .social-icons a {
    width: 55px;
    height: 55px;
  }

  .social-icons i {
    font-size: 24px;
  }
}

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
}

.card {
  background: #222;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
}

.appfooter {
  color: orange;
}

form input,
form textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
}

footer {
  background: #000;
  padding: 20px;
  font-size: 12px;
  text-align: center;
}

/* carousel carousel carousel carousel*/

/* RESET IMPORTANT */
.carousel-track {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Layout */
.carousel {
    position: relative;
    overflow: hidden;
    width: 90%;
    max-width: 900px; 
    margin: 10px auto;
    margin-top: 5px;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgb(0 0 0 / 0.15);
}

.carousel-track-container {
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}

/* Slides */
.carousel-slide {
    min-width: 100%;
    flex-shrink: 0;
    padding: 8px; /* creates white border spacing */
    box-sizing: border-box;
}

/* Make link fill slide */
.carousel-link {
    display: block;
    width: 100%;
    height: 100%;
}

/* IMAGE FIX 🔥 */
.carousel-slide img {
    width: 100%;
    height: 100%;
    max-height: 320px;
    object-fit: cover;
    border-radius: 10px;
    border: 3px solid #fff; /* thin white border */
    box-shadow: 0 4px 12px rgb(0 0 0 / 0.15);
}

/* Buttons */
.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #ff7a00, #ff9500);
    color: #fff;
    border: none;
    cursor: pointer;
    z-index: 2;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    box-shadow: 0 4px 10px rgb(0 0 0 / 0.2);
}

.carousel-button:hover {
    transform: translateY(-50%) scale(1.15);
    background: linear-gradient(135deg, #ff9500, #ffb347);
}

.carousel-button-left {
    left: 12px;
}

.carousel-button-right {
    right: 12px;
}

/* Responsive */
@media (max-width: 768px) {
    .carousel-slide img {
        max-height: 240px;
    }

    .carousel-button {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .carousel-slide img {
        max-height: 200px;
    }
}
