/********** Template CSS **********/
:root {
    --primary: #06A3DA;
    --secondary: #F57E57;
    --light: #EEF9FF;
    --dark: #091E3E;
}

h1,
h2,
.font-weight-bold {
    font-weight: 700 !important;
}

h3,
h4,
.font-weight-semi-bold {
    font-weight: 600 !important;
}

h5,
h6,
.font-weight-medium {
    font-weight: 500 !important;
}

.btn {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn-primary,
.btn-secondary {
    color: #FFFFFF;
}

.btn-primary:hover {
    background: var(--secondary);
    border-color: var(--secondary);
}

.btn-secondary:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 28px;
    height: 28px;
}

.btn-lg-square {
    width: 46px;
    height: 46px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.top-shape::before {
    position: absolute;
    content: "";
    width: 35px;
    height: 100%;
    top: 0;
    left: -17px;
    background: var(--primary);
    transform: skew(40deg);
}

.navbar-light .navbar-nav .nav-link {
    font-family: 'Jost', sans-serif;
    padding: 35px 15px;
    font-size: 18px;
    color: var(--dark);
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 15px;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
    }
      .navbar  h1{
  font-size: 20px !important;
}
}

.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(9, 30, 62, .50);
    z-index: 1;
}

@media (max-width: 576px) {
    .carousel-caption h5 {
        font-size: 14px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }
    .display-1{
        font-size: 15px !important;
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

.section-title h5::before {
    position: absolute;
    content: "";
    width: 45px;
    height: 3px;
    right: -55px;
    bottom: 11px;
    background: var(--primary);
}

.section-title h5::after {
    position: absolute;
    content: "";
    width: 15px;
    height: 3px;
    right: -75px;
    bottom: 11px;
    background: var(--secondary);
}

.hero-header {
    background: linear-gradient(rgba(9, 30, 62, .85), rgba(9, 30, 62, .85)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.service-item img,
.service-item .bg-light,
.service-item .bg-light h5,
.team-item .team-text {
    transition: .5s;
}

.service-item:hover img {
    transform: scale(1.15);
}

.team-item .team-text::after,
.service-item .bg-light::after {
    position: absolute;
    content: "";
    top: 50%;
    bottom: 0;
    left: 15px;
    right: 15px;
    border-radius:100px / 15px;
    box-shadow: 0 0 15px rgba(0, 0, 0, .7);
    opacity: 0;
    transition: .5s;
    z-index: -1;
}

.team-item:hover .team-text::after,
.service-item:hover .bg-light::after {
    opacity: 1;
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  min-height: 420px;
  background: linear-gradient(rgba(9, 30, 62, .5), rgba(9, 30, 62, .5)), url(../img/carousel-1.jpg) center center no-repeat;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Background Image */
.hero-bg {
  width: 100%;
  height: auto;
  display: block;
}

/* Promo Card */
.promo-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70%;
  transform: translate(-50%, -50%);
  background: linear-gradient(
    135deg,
    rgba(0, 166, 199, 0.9),
    rgba(0, 141, 177, 0.9)
  );
  padding: 30px;
  text-align: center;
  color: #fff;
  border-radius: 6px;
}

/* Heading */
.promo-card h3 {
  font-size: 28px;
  margin-bottom: 30px;
  font-weight: 700;
  color: #fff;
}

/* Text */
.promo-card p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 30px;
  opacity: 0.9;
}

/* Buttons */
.buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  padding: 10px 20px;
  font-size: 14px;
  text-decoration: none;
  border-radius: 3px;
  font-weight: 600;
}

/* Button Styles */
.btn-primary {
  background: #0b2c4d;
  color: #fff;
}

.btn-secondary {
  background: #ffffff;
  color: #0b2c4d;
}

/* Hover Effects */
.btn:hover {
  opacity: 0.9;
}






/* Small Mobile (≤ 480px) */
@media (max-width: 480px) {
  .promo-card {
    padding: 10px;
  }

  .promo-card h3 {
    font-size: 18px;
  }
  .btn {
  padding: 5px 10px;
  font-size: 10px;
  text-decoration: none;
  border-radius: 3px;
  font-weight: 600;
}
.navbar-brand img{
    width: 50px !important;
}
.service-item h5{
    font-size: 12px;
}
.cont{
    padding: 10px !important;
}

.navbar {
  padding: 10px !important;
}
.navbar  h1{
  font-size: 13px !important;
}

}

.navbar  h1{
  font-size: 30px;
}


.free-services {
  background: #f6fbfd;
  padding: 60px 20px;
}
.navbar-brand img{
    width: 100px;
}

/* Heading */
.free-services h2 {
  text-align: center;
  margin-bottom: 15px;
}

.free-services h2 span {
  color: #00a6c7;
}

/* Subtitle */
.subtitle {
  text-align: center;
  color: #555;
  margin-bottom: 35px;
}

/* Services List */
.services-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 0px;
  margin-bottom: 30px;
}

.services-list li {
  position: relative;
  padding-left: 30px;
  font-size: 20px;
}

.services-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #00a6c7;
  font-weight: bold;
}

/* Note Box */
.note {
  background: linear-gradient(
    135deg,
    rgba(0, 166, 199, 0.1),
    rgba(0, 141, 177, 0.1)
  );
  padding: 18px 22px;
  border-left: 4px solid #00a6c7;
  font-size: 20px;
  color: #0b2c4d;
  border-radius: 4px;
}

/* =====================
   RESPONSIVE
===================== */

@media (max-width: 768px) {


  .services-list {
    grid-template-columns: 1fr;
    gap: 14px;
  }

}

.footer-logo{
  width: 150px;
  margin-bottom: 20px;
}