*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
img, video{
  max-width: 100%;
  display: block;
  border-radius: 0.5rem;
}
body{
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
}
html{
    scroll-behavior: smooth;
}

/*-- navbar --*/
.navbar{
  background-color: #0c1a27;
  color: #fff;
}
.navbar .nav-link{
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
}
.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: #2697d1;
}

/*-- hero section --*/
.hero-section{
  background-color: #0c1a27;
  color: #fff;
  height: 85vh;
  display: flex;
  align-items: center;
  margin-top: 1rem;
}
.hero-section h1{
  font-weight: 700;
  margin-bottom: 1rem;
}
.hero-section h1 .hero-colored{
  color: #2697d1;
}
.hero-section .hero-text{
  font-size: 0.97rem;
  color: #ffffffb7;
}
.hero-section .btn-hero{
  background-color: #2697d1;
  font-weight: 600;
  border: none;
  border-radius: 0.3rem;
  color:black;
}
.hero-section .btn-hero-contact{
  background: transparent;
  font-weight: 600;
  color:#fff;
  border: 2px solid #2697d1;
  border-radius: 0.3rem;
  transition: all 0.3s ease;
}
.hero-section .btn-hero-contact:hover{
  border: none;
  background-color: #2697d1;
  color:black;
}

/*-- services --*/
.services-section {
  background-color: #f9f9f9;
}
.service-card {
  cursor: pointer;
  border: none;
  background: white;
  border-radius: 1rem;
  padding: 1.5rem 1rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}
.service-card:hover {
  transform: translateY(-5px);
}
.service-icon {
  font-size: 2.5rem;
  color: #2697d1;
}

/*-- gallery --*/
.modal-body ul li{
  margin-bottom: 0.35rem;
}
img{
  border-radius: 0.5rem 0.5rem 0 0;
}
#gallery .card-text{
  color: #2697d1;
}
#gallery .card-button{
  background: #2697d1;
  font-weight: 600;
  color:#fff;
  border: none;
  border-radius: 0.3rem;
  transition: all 0.3s ease;
}
#gallery .card video{
  height: 300px;
  width: 100%;
  object-fit: cover;
  border-radius: 0.5rem;
}
#gallery .card img{
  height: 300px;
  width: 100%;
  object-fit: cover;
  border-radius: 0.5rem;
}
#gallery video{
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

#gallery video.loaded{
  opacity: 1;
}
#gallery .nav-tabs .nav-item .nav-link{
  color: #2697d1;
  font-weight: 600;
}
#galleryTabContent .nav-item .nav-link{
  color: #2697d1;
  font-weight: 600;
}
#galleryTabContent .nav-item .active{
  margin: 0 5px;
  background: #2697d1;
  font-weight: 600;
  color:#fff;
  border: none;
  border-radius: 0.3rem;
  transition: all 0.3s ease;
}

/*-- contact --*/
.contact-section .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
