* {
  box-sizing: border-box;
}
body {
  font-size: 14px;
}
.v1_2 {
  width: 100%;
  height: 500px;
  background: rgba(255,255,255,1);
  opacity: 1;
  position: relative;
  top: 0px;
  left: 0px;
  overflow: hidden;
}
.v1_4 {
  width: auto;
  color: rgba(0, 0, 0, 1);
  position: absolute;
  top: 29px;
  left: 53px;
  font-family: Inter;
  font-weight: Bold;
  font-size: 32px;
  opacity: 1;
  text-align: left;
}
.v1_5 {
  width: 55%;
  color: rgba(0, 0, 0, 1);
  position: absolute;
  top: 88px;
  left: 53px;
  font-family: Inter;
  font-weight: regular;
  font-size: 16px;
  opacity: 1;
  text-align: justify;
  line-height: 25px;
}
.v1_7 {
  width: 40%;
  height: -webkit-fill-available;
  background: url(../images/v1_7.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  opacity: 1;
  position: absolute;
  top: 25px;
  left: 60%;
  overflow: hidden;
}

.inter-regular {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
}

:root {
  font-family: Inter, sans-serif;
  font-feature-settings: 'liga' 1, 'calt' 1; /* fix for Chrome */
}
@supports (font-variation-settings: normal) {
  :root { font-family: InterVariable, sans-serif; }
}

.carousel img {
  top: 0;
  left: 0;
  width: auto;
}

.carousel img {
  width: 100%;
  height: 750px;
  object-fit: inherit;
}

.carousel-caption {
  position: absolute;
  right: 30%;
  bottom: 20px;
  left: 30%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #000000;
  text-align: center;
  background: hsl(208deg 100% 97% / 70%);
}

.carousel-indicators li
{
  background-color: #212529;
}

/* Navbar styling */
/* Dark theme for navbar */
.navbar {
  background-color: #000 !important; /* Pure black for dark theme */
  padding: 10px 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 1;
}

/* Logo container with pop-out effect */
.navbar-brand-container {
  position: relative;
  z-index: 2;
}

/* Logo styling with background and shadow */
.navbar-logo {
  height: 90px;
  position: absolute;
  top: -15px;
  left: 15px;
  background-color: #2b2b2b;
  padding: 5px;
  box-shadow: 0 4px 12px #ffc107b0;
  border-radius: 5px;
}

/* Navbar link styling */
.navbar-nav .nav-link {
  color: #fff !important; /* White text for links */
  font-weight: 500;
  margin-right: 15px;
  transition: color 0.3s ease;
}

/* Primary color accent on hover */
.navbar-nav .nav-link:hover {
  color: #FFC530; /* Primary color accent */
}

/* Primary button style */
.navbar-nav .btn-primary {
  background-color: #FFC530; /* Primary color background */
  border: none;
  color: #000; /* Dark text on primary button */
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 5px;
}
.navbar-light .navbar-nav .active>.nav-link, .navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .nav-link.show, .navbar-light .navbar-nav .show>.nav-link {
  color: rgb(255 193 7 / 90%) !important;
}
/* Mobile adjustments */
@media (max-width: 768px) {
  .navbar-logo {
      height: 50px;
      top: -10px;
  }
  .navbar-nav .nav-item {
      margin-top: 10px;
  }
}

