/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* Reset */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
}

/* ================= NAVBAR ================= */
.navbar {
  padding: 15px 20px;
}

.navbar-brand {
    padding: 0;
}

.logo-img {
  height: 80px;
   width: auto;
   display: block;
}

.nav-link {
  color: #ccc !important;
  transition: 0.3s;
}

.nav-link:hover {
  color: #fff !important;
}

/* Social Icons */
.btn-icon {
  font-size: 18px;
  color: gray;
  margin-left: 10px;
  transition: 0.3s;
}

.btn-icon:hover {
  color: white;
}

/* ================= HERO ================= */


.hero-bg {
 
  background: url('../images/background.jpg') no-repeat center/cover;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.overlay {
  background: rgba(0,0,0,0.6);
  padding: 60px;
  border-radius: 10px;
}

/* FIXED OVERLAY */
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4); /* 🔥 lighter */
  z-index: 1;
}

/* CONTENT ABOVE */
.hero-bg .container {
  position: relative;
  z-index: 2;
  text-align: center;
}
/* TEXT STYLE */
.hero-bg h1 {
  color: #fff;
  font-size: 50px;
  font-weight: 700;
}

.hero-bg p {
  color: #ddd;
  font-size: 18px;
  margin-top: 10px;
}
/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================= SECTIONS ================= */
section {
  padding: 60px 0;
}

/* ================= CARDS ================= */
.card {
  border-radius: 12px;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

/* ================= BUTTON ================= */
.btn-dark {
  border-radius: 25px;
  padding: 10px;
  transition: 0.3s;
}

.btn-dark:hover {
  opacity: 0.9;
}

/* ================= SWIPER ================= */
.brandSwiper {
  width: 100%;
  padding-bottom: 40px;
}

.swiper-slide {
  display: flex;
  flex-direction: column;   /* 🔥 IMPORTANT */
  align-items: center;
  justify-content: center;
  text-align: center;
}

.swiper-slide img {
  width: 220px;
  height: 320px;
  object-fit: cover;
  border-radius: 10px;   /* ✅ fixed */
  transition: 0.3s;
}

/* ✅ correct hover */
.swiper-slide img:hover {
  transform: scale(1.05);
}

/* ================= FORM ================= */
.form-control {
  border-radius: 8px;
  padding: 10px;
}

.form-label {
  font-weight: 500;
}

/* ================= FOOTER ================= */
footer {
  font-size: 14px;
}

.contact-link {
    color: gray;
    text-decoration: none !important;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: white !important; /* Gold */
    text-decoration: underline;
}

.contact-link:visited,
.contact-link:active,
.contact-link:focus {
    color: #f5f5f5 !important;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {

  .hero-bg h1 {
    font-size: 32px;
  }

  .hero-bg p {
    font-size: 14px;
  }

  .logo-img {
    height: 40px;
  }

  .swiper-slide img {
    max-width: 120px;
    height: 120px;
  }

}