body {
  font-family: "Urbanist", sans-serif;
  margin: 0;
  padding: 0;
}

/* Header */
.header-main {
  background: #0d6eab;
  padding: 10px 0;
}

/* Navbar Links */
.navbar-nav .nav-link {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  margin-left: 28px;
}

.navbar-nav .nav-link:hover {
  color: #e6f3ff;
}

/* Dropdown */
.dropdown-menu {
  border-radius: 8px;
  border: none;
}

.dropdown-item {
  font-size: 15px;
}

/* Mobile Fix */
@media (max-width: 991px) {
  .navbar-nav {
    margin-top: 15px;
  }

  .navbar-nav .nav-link {
    margin-left: 0;
    padding: 10px 0;
  }
}

.hero-banner {
  position: relative;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
}

/* Video */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

/* Overlay */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 110, 171, 0.75);
  z-index: -1;
}

/* Content */
.hero-content {
  max-width: 900px;
}

/* Title */
.hero-title {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 25px;
}

/* Subtitle */
.hero-subtitle {
  font-size: 20px;
  margin-bottom: 35px;
}

/* Button */
.hero-btn {
  background: #fff;
  color: black;
  padding: 16px 40px;

  font-weight: 600;
  font-size: 18px;
}

.hero-btn:hover {
  background: #e69d20;
  color: #fff;
}

/* Responsive */

@media (max-width: 992px) {
  .hero-title {
    font-size: 44px;
  }

  .hero-subtitle {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-btn {
    padding: 14px 30px;
  }
}

.hero-btn i {
  transition: 0.3s;
}

.hero-btn:hover i {
  transform: translateX(5px);
}
.text-color {
  color: #0d6eab;
}

.service-icon {
  width: 80px;
  height: 80px;
  background: #0d6eab;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 28px;
  margin: auto;
}

.service-box a {
  color: #0d6eab;
  font-weight: 600;
  text-decoration: none;
}

.service-box a:hover {
  text-decoration: underline;
}

/* Section Title */

.section-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
}

/* Card */

.course-card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  transition: 0.4s;
  background: white;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.course-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* Image */

.course-img {
  height: 180px;
  object-fit: cover;
}

/* Content */

.course-body {
  padding: 20px;
  text-align: center;
}

.course-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

/* Button */

.course-btn {
  background: #0d6eab;
  border: none;
  padding: 8px 18px;
  border-radius: 30px;
  color: white;
  font-size: 14px;
  transition: 0.3s;
}

.course-btn:hover {
  background: #0b5ed7;
}
.bg-service {
  background: #244c7a;
}

.text-inter {
  color: #244c7a;
}

.contact-section {
  background: #f7f9fc;
}

.section-title {
  color: #0d6eab;
  font-size: 38px;
}

.contact-box {
  background: white;
  border-radius: 16px;
}

.contact-img img {
  min-height: 420px;
  object-fit: cover;
}

.contact-input {
  border-radius: 10px;
  border: 1px solid #d9e2ef;
}

.contact-input:focus {
  border-color: #0d6eab;
  box-shadow: 0 0 0 0.15rem rgba(13, 110, 171, 0.15);
}

.contact-btn {
  background: #0d6eab;
  color: white;
  font-weight: 600;
  padding: 12px;
  border-radius: 10px;
  transition: 0.3s;
}

.contact-btn:hover {
  background: #0a5b8c;
}
.gallery-section{
background:#f8f9fb;
}

.gallery-card{
overflow:hidden;
border-radius:12px;
box-shadow:0 8px 20px rgba(0,0,0,0.08);
transition:0.3s;
}

.gallery-card img{
width:100%;
height:250px;
object-fit:cover;
transition:0.4s;
}

.gallery-card:hover img{
transform:scale(1.1);
}

.gallery-card:hover{
box-shadow:0 12px 30px rgba(0,0,0,0.15);
}