/* Navbar Styling */
.navbar {
  background-color: #fff;
  padding: 1rem;
  border-bottom: 1px solid #ddd;
}

.nav-item {
  margin-right: 30px;
  text-transform: uppercase;
  font-size: 20px;
}

.nav-item:last-child {
  margin-right: 0;
}

.social-icons a {
  color: #333;
  margin-right: 10px;
  font-size: 18px;
}

.social-icons a:last-child {
  margin-right: 0;
}

.connect-btn {
  background-color: #d3232f;
  color: #fff;
  padding: 10px 20px;
  min-height: 44px;
  border: none;
  border-radius: 999px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-right: 12px;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(211, 35, 47, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.connect-btn:hover {
  color: #fff;
  background-color: #bb1f29;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(187, 31, 41, 0.33);
}

.admin-btn {
  background: linear-gradient(135deg, #102a43 0%, #274e75 100%);
  color: #fff;
  padding: 10px 18px;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.07em;
  margin-right: 14px;
  text-decoration: none;
  box-shadow: 0 6px 14px rgba(16, 42, 67, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.admin-btn:hover {
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 10px 20px rgba(16, 42, 67, 0.34);
}

@media (max-width: 992px) {
  .navbar {
    padding: 0.75rem;
    row-gap: 8px;
  }

  .navbar-brand {
    margin-right: auto;
  }

  .navbar-brand img {
    height: 70px;
  }

  .navbar-collapse {
    flex-basis: 100%;
    order: 4;
    margin-top: 8px;
  }

  .nav-item {
    margin-right: 0;
    font-size: 16px;
  }

  .connect-btn,
  .admin-btn {
    display: inline-flex;
    align-items: center;
    margin-top: 0;
    margin-right: 6px;
    padding: 8px 14px;
    font-size: 12px;
  }

  .social-icons a {
    font-size: 16px;
    margin-right: 8px;
  }
}

@media (max-width: 576px) {
  .navbar {
    padding: 0.65rem;
    row-gap: 10px;
  }

  .navbar-toggler {
    order: 1;
    margin-left: auto;
  }

  .navbar-brand {
    order: 2;
    width: 100%;
    text-align: center;
    margin-right: 0;
  }

  .navbar-brand img {
    height: 58px;
    margin-right: 0;
  }

  .connect-btn,
  .admin-btn {
    order: 3;
    flex: 1 1 calc(50% - 6px);
    display: inline-flex;
    align-items: center;
    margin-right: 0;
    text-align: center;
    justify-content: center;
    min-width: 130px;
  }

  .social-icons {
    order: 5;
    width: 100%;
    text-align: center;
  }

  .navbar-collapse {
    order: 6;
  }

  .social-icons a {
    margin-right: 10px;
  }

  .social-icons a:last-child {
    margin-right: 0;
  }
}

@media (max-width: 360px) {
  .connect-btn,
  .admin-btn {
    flex: 1 1 100%;
    min-width: 0;
    padding: 8px 10px;
    font-size: 11px;
    letter-spacing: 0.03em;
  }

  .nav-item {
    font-size: 15px;
  }
}

.company-name {
  font-size: 18px;
  text-transform: uppercase;
  margin-right: 10px;
  font-weight: bold;
}

.navbar-brand img {
  height: clamp(58px, 9vw, 100px);
  margin-right: 5px;
}

/* Footer Styling */
.footer {
  background-color: #333;
  color: #fff;
  padding: 50px 0;
  text-align: center;
}

.footer a {
  color: #fff;
  text-decoration: none;
  margin: 0 10px;
}

.footer .social-icons a {
  font-size: 20px;
  margin: 0 10px;
}

.footer .connect-btn {
  background-color: #d3232f;
  color: #fff;
  padding: 10px 20px;
  border: none;
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 20px;
}

.footer .copyright {
  font-size: 14px;
  margin-top: 20px;
}

.footer .terms {
  font-size: 12px;
  margin-top: 10px;
}

.footer .terms a {
  margin: 0 5px;
}

/* Carousel Styling */
.carousel-item {
  height: 500px;
  /* Remove display: flex; */
}

.carousel-item .row {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: stretch;
}

.carousel-item .col-md-6 {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.carousel-item .col-md-6:first-child {
  background-color: #333;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #333;
}

.carousel-control-prev-icon, .carousel-control-next-icon {
  width: 30px;
  height: 30px;
}

.carousel-control-prev, .carousel-control-next {
  width: 5%;
}

.bg-grey {
  background-color: #333;
}

/* Container Styling */
.container.mt-5 {
  padding: 50px;
  background-color: #f7f7f7;
}

.container.mt-5 h2 {
  font-weight: bold;
  margin-bottom: 20px;
}

.container.mt-5 p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.dropdown-menu {
  background-color: #fff;
  border: 1px solid #ddd;
  padding: 10px;
}

.dropdown-item {
  color: #333;
  padding: 10px;
  border-bottom: 1px solid #ddd;
}

.dropdown-item:hover {
  background-color: #f7f7f7;
  color: #333;
}

.dropdown-item:last-child {
  border-bottom: none;
}

/* Contact Page Specific Styling */
        .contact-header {
            background-color: #333;
            color: white;
            padding: 60px 0;
            text-align: center;
        }

        .contact-section {
            padding: 80px 0;
            background-color: #f7f7f7;
        }

        .contact-info-card {
            background: #fff;
            padding: 30px;
            border-bottom: 5px solid #d3232f;
            height: 100%;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        }

        .info-icon {
            color: #d3232f;
            font-size: 2rem;
            margin-bottom: 15px;
        }

        .form-control {
            border-radius: 0;
            padding: 25px 15px;
            border: 1px solid #ddd;
        }

        .btn-submit {
            background-color: #d3232f;
            color: white;
            text-transform: uppercase;
            font-weight: bold;
            padding: 12px 40px;
            border: none;
            transition: 0.3s;
        }

        .btn-submit:hover {
            background-color: #b11d27;
            color: white;
        }