/* =========================
   VIDEO HERO (LAND HEADER)
========================= */

.land__header {
  position: relative;
  width: 100%;
  min-height: 90vh;          /* full screen hero */
  overflow: hidden;
  background: #000;           /* fallback */
}

/* Video fills the container */
.video__wrapper.wrapper__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;          /* IMPORTANT */
  object-position: center;
  z-index: 1;
}

/* Dark overlay on video */
.video__overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 90vh;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.25) 40%,
    rgba(0,0,0,0.55) 100%
  );
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 18px 16px;
}

/* Logo wrapper (top area) */
.header__logo__wrapp {
  width: min(1200px, 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;

  /* optional glass effect 
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
*/
  border-radius: 16px;
  padding: 12px 14px;
}

/* Main and child logo blocks */
.logo__main,
.logo__child {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo__main a,
.logo__child a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

/* Branding */
.site-branding {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-title {
  margin: 0;
  line-height: 1;
}

/* Logo images */
.logo-img,
.responsive-logo-img {
  height: 120px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* By default, keep only one logo image visible */
.responsive-logo-img { display: none; }

/* External/child logo */
.logo__child img {
  height: 100px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* SVG (your seal) */
.site-branding svg {
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
}

/* =========================
   RESPONSIVE
========================= */

/* Large tablets / small laptops */
@media (max-width: 991px) {
  .header__logo__wrapp {
    padding: 10px 12px;
    border-radius: 14px;
  }
  .logo-img { height: 52px; }
  .logo__child img { height: 40px; }
  .site-branding svg { width: 48px; height: 48px; }
}

/* Tablets / big phones */
@media (max-width: 768px) {
  .video__overlay {
    padding: 12px 10px;
  }

  .header__logo__wrapp {
    /* flex-direction: column; */
    align-items: center;
    justify-content: space-between;
    text-align: center;
    gap: 170px;
    padding: 12px;
  }

  .logo__main,
  .logo__child {
    justify-content: center;
  }

  /* Swap to "responsive logo" if you really want */
  .logo-img { display: none; }
  .responsive-logo-img {
    display: block;
    height: 130px;
  }

  .site-branding svg {
    width: 44px;
    height: 44px;
  }
}

/* Small phones */
@media (max-width: 480px) {
	.video__wrapper.wrapper__video {
    position: absolute;
    inset: 0;
    width: 100%;
   height:380px;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}
	.land__header {
    position: relative;
    width: 100%;
    min-height: 380px;
    overflow: hidden;
    background: #000;
}
	.video__overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: 380px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.25) 40%, rgba(0, 0, 0, 0.55) 100%);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 0px 0px;
}
  .header__logo__wrapp {
    border-radius: 12px;
    padding: 10px;
  }

  .responsive-logo-img { height: 60px; }
  .logo__child img { height: 60px; }
  .site-branding svg { width: 38px; height: 38px; }
}

/* iOS Safari video fix */
@supports (-webkit-touch-callout: none) {
  .video__wrapper.wrapper__video {
    transform: translateZ(0);
  }
}

.btn-new1
{padding: 15px; 
    border-radius: 40rem;
    text-align: center;
    background: linear-gradient(90deg, #FF9900, #8A20AF);
    -webkit-text-fill-color: #fff;
}

.btn-new2
{    padding: 15px;  
    border-radius: 40rem;
    text-align: center;
    background: linear-gradient(90deg, #FF9900, #8A20AF);
    -webkit-text-fill-color: #fff;
}

.site-footer {
    padding-top: 50px
   
}
.pbmit-featured-container{
    overflow: hidden;
    border-bottom: 10px solid #F90;

}
.pbmit-course-style-1 .pbminfotech-box-content-inner
 {
    padding: 20px 20px 20px 20px;
}

/*  mobile btm nav */
.mobile-cta-bar{
  border-top: 2px solid #025287;
}

.mobile-cta-bar .cta-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 48px;
  font-weight: 600;
  border-radius: 12px;
  gap: 2px;
}

.mobile-cta-bar .cta-btn img{
  width: 28px;
}


/* Keep page content above the fixed bar on mobile */
@media (max-width: 767.98px) {
  body { padding-bottom: 80px; }

}

@media(min-width:640px) and (max-width:991px){

  .logo-img {
        height: 130px !important;
    }
  .logo__child img {
        height: 110px;
    }

  .land__header {
    min-height: 55vh;
  }

  .video__overlay {
    min-height: 55vh;
  }
}


/*  inner both website  */
