/*** NavBar ***/

.navbar-brand img {
  max-height: 70px;
  width: auto;
}

.navbar {
  padding: 12px 0;
}

/* Nav links */
.navbar .nav-link {
  font-weight: 500;
  color: #012E44;
  transition: 0.2s;
}

.navbar .nav-link:hover {
  color: #17a2b8;
}

/* CTA button pop */
.navbar .btn-info {
  transition: 0.2s;
}

.navbar .btn-info:hover {
  transform: translateY(-1px);
}

/* Dropdown Menu Styling */
.navbar .dropdown-menu {
    background-color: #ffffff !important;   /* override Bootstrap */
    border: 2px solid #17a2b8 !important;
    border-radius: 0.5rem !important;
    min-width: 200px !important;
    padding: 0.5rem 0 !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1) !important;
    transition: all 0.3s ease !important;
}

/* Dropdown Items */
.navbar .dropdown-item {
    color: #012E44 !important;
    font-weight: 500 !important;
    padding: 0.5rem 1.5rem !important;
    transition: background 0.3s, color 0.3s !important;
}

/* Hover and Focus */
.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus {
    background-color: #17a2b8 !important;
    color: #fff !important;
    text-decoration: none !important;
}

/* Caret Styling */
.navbar .dropdown-toggle::after {
    margin-left: 0.25rem !important;
    vertical-align: 0.2em !important;
    border-top: 0.4em solid #012E44 !important;
    border-right: 0.4em solid transparent !important;
    border-left: 0.4em solid transparent !important;
}

/* Mobile adjustments */
@media (max-width: 576px) {
    .navbar .dropdown-menu {
        text-align: center !important;
        min-width: 100% !important; /* full width on small screens */
    }
    .navbar .dropdown-item {
        padding: 0.5rem 0 !important;
        font-size: 0.95rem !important;
    }
}

/*** Index ***/

.index-feature-card {
  border: 1px solid #e5e7eb; /* soft grey */
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: #0dcaf0; /* Bootstrap info color */
  box-shadow: 0 0.75rem 1.5rem rgba(0,0,0,0.08);
}

.index-hosting-card {
  border: 1px solid #e5e7eb; /* soft grey */
  transition: all 0.3s ease;
}

.index-hosting-card {
  border-color: #0dcaf0; /* Bootstrap info color */
  box-shadow: 0 0.75rem 1.5rem rgba(0,0,0,0.08);
}

/*** Footer ***/

.bg-footer {
  background: #012E44;
}

.footer {
  color: #fff;
  background: #012E44
  
  
  ;
  padding: 20px 20px 0 20px;
}

/* Paragraph text */
.footer p {
  font-size: 15px;
}

/*** Social Buttons ***/
.footer .btn.btn-social {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #012E44;
  border: 2px solid #17a2b8;
  border-radius: 50%;
  transition: all 0.3s ease;
  padding: 0;
}

.footer .btn.btn-social:hover {
  transform: translateY(-2px);
}

/* Hover effect */
.footer .btn.btn-social:hover {
  color: #fff;
  background: #17a2b8;
}

/* Mobile: smaller icons */
@media (max-width: 576px) {
  .footer .btn.btn-social {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
}

/*** Footer Links ***/
.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: #ffffff;
  font-size: 17px;
  font-weight: normal;
  font-family: 'Roboto', sans-serif;
}

/* Center links on small screens */
@media (max-width: 768px) {
  .footer .btn.btn-link {
    text-align: center;
  }
}

/* Hover effect */
.footer .btn.btn-link:hover {
  letter-spacing: 0.5px;
  box-shadow: none;
}

/*** Newsletter ***/
.footer-newsletter {
  color: #000;
  text-align: center;
}

/*** Copyright ***/
.footer .copyright {
  padding: 15px 20px 10px 20px;
  font-size: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

/* Footer menu links */
.footer .footer-menu a {
  margin-right: 15px;
  padding-right: 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.footer .footer-menu a:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}

/*** Utility Fixes ***/

/* Prevent social icons wrapping if needed */
.footer .social-row {
  flex-wrap: nowrap;
  overflow-x: auto;
}

/* Smooth resizing (optional but nice) */
.footer .btn.btn-social {
  transition: all 0.2s ease-in-out;
}

/*** Carousel Fix (unchanged) ***/
.carousel-inner {
  max-height: 400px;
  overflow: hidden;
}

