@font-face {
  font-family: "Rajdhani";
  src: url("../fonts/Rajdhani-Fonts/Rajdhani-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Rajdhani";
  src: url("../fonts/Rajdhani-Fonts/Rajdhani-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Rajdhani";
  src: url("../fonts/Rajdhani-Fonts/Rajdhani-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: 700;
}

.font-18 {
  font-size: 18px;
}

.font-weight-500 {
  font-weight: 500;
}

.required {
  color: red;
}

/* General Body */
body {
  color: #575756;
  font-size: 16px;
  font-family: "Rajdhani", sans-serif;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}

.navbar-brand {
  color: #263169;
}

.navbar-nav .nav-link {
  color: #575756;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 18px;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: #3a8dc6;
}

.header-logo {
  height: 90px;
  width: auto;
  transition: height 0.3s ease;
}

.navbar.scrolled .header-logo {
  height: 60px;
}

/* Banner */
.banner {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

#myVideo {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1;
  transform: translate(-50%, -50%);
}

.banner .content {
  position: absolute;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  color: #f1f1f1;
  font-size: 26px;
  width: 100%;
  padding: 20px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.banner-content-width {
  width: 50%;
  line-height: 2;
  letter-spacing: 2px;
}
.banner-header {
  font-size: 60px;
  text-transform: uppercase;
  font-weight: 700;
}
.banner-header .banner-header-outline {
  -webkit-text-stroke: 2px currentColor;
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
  color: #3a8dc6;
}
/* Sections */
.section-padding {
  padding: 60px 0;
}

.bg-light-gray {
  background-color: #f8f9fa;
}

.sub-header {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #263169;
  letter-spacing: 1px;
}

.sub-header::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 38px;
  height: 2px;
  margin-right: 16px;
  background: #263169;
}

.section-tagline {
  -webkit-text-stroke: 1px #3a8dc6;
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
  color: #3a8dc6;
  position: absolute;
  font-size: 70px;
  font-weight: 700;
  white-space: nowrap;
  text-transform: uppercase;
}

.section-tagline-left {
  left: -95px;
  writing-mode: sideways-lr;
}

.section-tagline-right {
  right: -95px;
  writing-mode: sideways-rl;
}

/* Buttons */
.btn-primary {
  background-color: #263169;
  border-color: #263169;
}

.btn-primary:hover {
  background-color: #3a8dc6;
  border-color: #3a8dc6;
}

.btn-link {
  color: #3a8dc6;
}

/* Footer */
footer {
  background-color: #263169;
  color: #fff;
}

footer a {
  color: #fff;
  text-decoration: none;
}

footer a:hover {
  color: #3a8dc6;
}

.footer-img-wrapper {
  border-bottom: 1px solid #3a8dc6;
}

.footer-img {
  width: 180px;
  height: auto;
}

.footer-section-padding {
  padding: 40px 0 0;
}

.about-img {
  height: 480px;
  width: 100%;
  object-fit: cover;
}

.animated-img-wrapper {
  overflow: hidden;
  border-radius: 15px;
}

.animated-img-wrapper img {
  transform: scale(1) rotate(0deg);
  transition: transform 0.5s ease;
}

.animated-img-wrapper:hover img {
  transform: scale(1.1) rotate(3deg);
}

.animated-img-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(58, 141, 198, 0.1);
  z-index: 1;
}

.card {
  border: none;
  transition: 0.3s ease all;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}
.card:hover {
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
}
.card-title {
  font-size: 18px;
  font-weight: 600;
  color: #263169;
}
.card-subtitle {
  font-size: 14px;
  color: #3a8dc6 !important;
}

.schedule-bg {
  padding: 150px 0;
  background-image: url("../images/quote.jpg");
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  position: relative;
}

.schedule-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.schedule-content {
  position: relative;
  z-index: 2;
}

.contact-form {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.1);
}

#services .card-img-top {
  height: 300px;
  object-fit: cover;
}

.navbar-toggler {
  border: none;
}
.navbar-toggler:focus {
  box-shadow: none;
}
