/* Base font setup */
:root {
  --font-body: "Inter", sans-serif;
  --font-heading: "Poppins", serif;
  --font-size-base: 16px;
  --font-size-lg: 1.25rem;
  --font-size-md: 1rem;
  --font-size-sm: 0.875rem;
  --font-size-xs: 0.75rem;
  --text: #090c0e;
  --background: #f9fafb;
  --primary: #1d62ad;
  --primary-dark: #000030;
  --secondary: #c3e0ff;
  --accent: #d1700f;
}

/* Responsive font sizes */
body,
html {
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  background-color: var(--background);
  color: var(--text);
  scroll-behavior: smooth;
}
/* Scrollbar styles */
::-webkit-scrollbar {
  width: 8px;
  height: 10px;
}

::-webkit-scrollbar-thumb {
  background-color: var(--bs-dark);
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--primary-dark);
}

::-webkit-scrollbar-track {
  background-color: var(--background);
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.shadow-c {
  -webkit-box-shadow: 0px 3px 5px -3px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0px 3px 5px -3px rgba(0, 0, 0, 0.4);
  box-shadow: 0px 3px 5px -3px rgba(0, 0, 0, 0.4);
}
.btn-accent {
  background-color: var(--accent);
  color: white;
}
.btn-accent:hover {
  background-color: #aa4e02;
  color: white;
}
.bg-theme-secondary {
  background-color: var(--secondary) !important;
}
.bg-primary-dark {
  background-color: var(--primary-dark) !important;
}
.text-accent {
  color: var(--accent) !important;
}
.owl-stage {
  display: flex;
}

h1,
.h1 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
}

h2,
.h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
}

h3,
.h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
}

h4,
.h4 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
}

h5,
.h5 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
}

h6,
.h6 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
}
.ff-body {
  font-family: var(--font-body);
}

@media (max-width: 576px) {
  :root {
    --font-size-base: 15px;
  }
}
.snap {
  scroll-snap-type: y mandatory;
}
.snap > * {
  scroll-snap-align: start;
}

@keyframes grow {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.2);
  }
}
@keyframes loop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(3em);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fade {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
@media (max-width: 992px) {
  #navbarNav {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    text-align: center;
    z-index: 30;
    align-content: space-around;
    background-color: rgba(0, 0, 0, 0.9);
    display: none;
    font-size: 1.5rem;
    animation: fade 0.5s ease;
  }
}
.navbar-toggler {
  box-shadow: none !important;
}
.nav-link {
  text-transform: uppercase;
  transition: all 0.3s;
}

#hero-slider {
  background: black;
  position: relative;
}
#hero-slider .carousel-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}
#hero-slider .carousel-caption,
#hero-slider .carousel-indicator {
  z-index: 2;
}
#hero-slider .carousel-caption {
  top: 50%;
  transform: translateY(-50%);
  bottom: unset;
}
@media (max-width: 576px) {
  .carousel-caption h5 {
    font-size: 1.8rem !important;
  }
  .carousel-caption p {
    font-size: 1.1rem !important;
  }
  .carousel-caption a {
    font-size: 1.1rem !important;
  }
}
#hero-slider .carousel-indicators button {
  width: 10px;
  height: 10px;
  opacity: 0.5;
}
#hero-slider .carousel-caption h5 {
  font-size: 3rem;
  font-weight: 700;
  color: white;
  opacity: 0;
  animation: slideUp 1s ease forwards;
}
#hero-slider .carousel-caption p {
  font-size: 1.5rem;
  color: white;
  opacity: 0;
  animation: slideUp 1s ease 0.5s forwards;
}
#hero-slider img {
  height: 100svh;
  object-fit: cover;
  animation: grow 15s linear both infinite;
}
.marquee {
  overflow: hidden;
  position: relative;
  color: white;
}
.marquee::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 10%;
  background: linear-gradient(to right, transparent, var(--background));
}
.marquee::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 10%;
  background: linear-gradient(to left, transparent 0%, var(--background));
  z-index: 1;
}
.marquee ul {
  display: flex;
  width: fit-content;
  animation: loop 10s linear infinite;
}
@media (max-width: 576px) {
  .tab-pane img {
    width: 50px;
  }
}
@keyframes scrollBg {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 0%;
  }
}
.footer-top {
  height: 250px;
  background: linear-gradient(
      to top,
      var(--primary-dark),
      rgba(255, 255, 255, 0)
    ),
    url(../images/building.png) repeat-x, var(--background) bottom;
  background-size: 50%;
  animation: scrollBg 20s linear infinite both;
}
footer {
  background-color: #f8f9fa;
  padding: 20px 0;
}

.social-icons a {
  margin: 0 10px;
  color: white;
  font-size: 1.2rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.822);
  text-decoration: none;
  margin: 0 15px;
  transition: all 0.3s;
}

.footer-links a:hover {
  color: white;
}

@media (max-width: 768px) {
  .footer-links {
    margin-bottom: 10px;
  }
}

.whatsapp-contact a {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-box-shadow: 0px 2px 6px -2px rgba(0, 0, 0, 0.49);
  -moz-box-shadow: 0px 2px 6px -2px rgba(0, 0, 0, 0.49);
  box-shadow: 0px 2px 6px -2px rgba(0, 0, 0, 0.49);
}

.tech .card {
  animation: slideUp 1s ease;
}
.tech .list-group a.active {
  background-color: var(--accent);
  border-color: var(--accent);
  color: white;
}
.page-header {
  position: relative;
  overflow: hidden;
  background-color: black;
}
.page-header img {
  background-size: cover;
  height: 250px;
  object-fit: cover;
  opacity: 0.2;
  animation: grow 15s linear alternate infinite;
}
.page-header h1 {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  /* border-bottom: .25rem solid var(--accent); */
}
.small {
  font-size: 0.8rem;
  color: rgba(0, 0, 0, 0.6);
}
