@charset "UTF-8";
body {
  font-family: "Inter", sans-serif;
  color: #061C3D;
  font-weight: light;
  font-size: 1.125rem; /* 18px */
  line-height: 2rem; /* 32px */
}

h2 {
  font-weight: bold;
  color: #9c1981;
  text-transform: uppercase;
  font-size: 1.25rem; /* 20px */
}

.sub-heading {
  font-weight: bold;
  font-size: 2.125rem; /* 34px */
  line-height: 2.75rem; /* 44px */
}

.section-heading {
  font-weight: bold;
  font-size: 2.125rem; /* 34px */
}

hr {
  margin: 6.25rem 0px !important; /* 100px */
}

.text-underline {
  text-decoration: underline;
  text-decoration-color: #9c1981;
}

.purple-text {
  color: #9c1981;
}

.hero {
  background-size: cover;
  background-position: bottom;
  color: #fff;
  height: 500px;
  /*
    Scalable typography + spacing:
    - Scales smoothly from small phones (SE/S8) through tablets and desktop.
    - Caps at your original desktop values.
  */
}
.hero .hero-title {
  font-weight: 700;
  margin-top: clamp(70px, 10vw, 125px);
  font-size: clamp(30px, 4.2vw, 55px);
  line-height: clamp(44px, 5.4vw, 75px);
}
.hero .hero-text {
  font-weight: 200;
  margin-top: 1rem;
  font-size: clamp(19px, 2.2vw, 30px);
  line-height: clamp(28px, 2.8vw, 40px);
}
.hero .scroll-down-btn {
  position: absolute;
  top: 470px;
  left: 90%;
  background-color: #B5ED3D;
  color: #000;
  border: 5px solid #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .scroll-down-btn:active {
  background-color: #B5ED3D;
  color: #000;
  border: 5px solid #fff;
}

.dropdown-menu {
  border: none !important;
  box-shadow: -3px -3px 10px rgba(0, 0, 0, 0.04) !important;
}

.footnote {
  font-size: 14px;
}

.card-lightblue {
  background-color: #E9F5FE;
  margin-top: 100px;
}
.card-lightblue .card-img {
  width: 95%;
}

.card-lightgreen {
  background-color: #F8FDEC;
  margin-bottom: 120px;
}
.card-lightgreen .card-img {
  width: 95%;
  float: right;
}

.ce-box {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.8rem;
}
.ce-box .ce-text {
  font-weight: bold;
  font-size: 16px;
  color: #00529c;
  line-height: 26px;
}

.btn {
  border-radius: 40px;
  padding: 12px;
  font-weight: bold;
}

.btn.learn-more {
  background-color: #00529c;
  color: #fff;
  width: 40%;
}

.btn.see-all {
  background-color: #9c1981;
  color: #fff;
  width: 25%;
}

.news-heading {
  font-size: 26px;
  font-weight: bold;
}

.news-date {
  font-size: 14px;
  font-weight: bold;
  color: #9c1981;
}

.news-excerpt {
  font-size: 16px;
  margin-bottom: 30px;
}

.btn.read-more {
  background-color: #fff;
  color: #9c1981;
  width: 25%;
  border: 2px solid #9c1981;
}

.btn.back-to-top {
  background-color: #B5ED3D;
  border-radius: 90px;
  transform: rotate(-90deg);
}

.btn.back-to-top:active {
  background-color: #B5ED3D;
  border-radius: 90px;
  border-color: #B5ED3D;
}

footer {
  padding: 70px 0px 60px;
  box-shadow: 0px -20px 40px rgba(0, 0, 0, 0.05);
  font-size: 20px;
}
footer ul {
  font-size: 20px;
}
footer .copy {
  font-size: 16px;
}
footer a {
  text-decoration: none;
  color: #061C3D;
}

.gradient-border-bottom {
  position: relative;
  background: linear-gradient(to right, #00457D, #9D1882);
  height: 22px;
}

.diagonal-header {
  background-size: cover;
  background-position: bottom;
  color: white;
  padding: 80px 0px;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%);
}
.diagonal-header h1 {
  font-size: 42px;
  line-height: 60px;
}
.diagonal-header .news-date {
  font-weight: 100;
  font-size: 16px;
  color: #fff;
}
.diagonal-header .sub-heading {
  font-weight: 300;
  font-size: 20px;
  margin-bottom: 30px;
  line-height: 35px;
}

/* Navbar Customization */
.navbar {
  height: auto;
  padding: 40px 0;
  font-size: 16px;
}
.navbar img {
  width: 30%;
}

.nav-link:hover {
  color: #9c1981;
}

.btn.contact-btn {
  border: 2px solid #9c1981;
  color: #9c1981;
  font-weight: 500;
  font-size: 16px;
  padding: 10px 30px !important;
}

.contact-btn:hover {
  background: #9c1981;
  color: white;
}

iframe {
  border-radius: 10px;
}

.diagonal-header.avas {
  padding-top: 60px;
  padding-bottom: 60px;
}

.components-container {
  position: relative;
  margin-top: 2rem;
}

.components-frame {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  background: #f5f5f5;
  display: grid;
}

.components-img {
  grid-area: 1/1;
  width: 100%;
  height: auto;
  display: block;
  opacity: 0;
  pointer-events: none;
}

.components-img--plain {
  opacity: 1;
}

.components-container.show-labels .components-img--plain {
  opacity: 0;
}
.components-container.show-labels .components-img--labelled {
  opacity: 1;
}

.info-btn {
  position: absolute;
  top: 18px;
  left: 30px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #9D1882;
  border: none;
  border-radius: 50%;
  z-index: 5;
  transition: background 0.3s;
}
.info-btn img {
  width: 7px;
  margin-bottom: 3px;
}

.info-btn:hover {
  background: #9c1981;
}

.video-title {
  background-color: #E9F5FE;
  border-radius: 10px;
  padding: 25px;
  margin-top: 30px;
}
.video-title h5 {
  color: #00529c;
}

.video-card {
  background-color: #F7F7F7 !important;
  border-radius: 1rem;
  overflow: hidden;
  transition: transform 0.2s;
}

.video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.thumbnail-container {
  position: relative;
}
.thumbnail-container img {
  border-radius: 30px;
}

.play-button {
  width: 48px;
  position: absolute;
  bottom: -5px;
  right: 30px;
  background: white;
  border-radius: 50%;
  padding: 0.5rem;
  font-size: 1.2rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.video-info {
  padding: 1rem;
}

.badge-role {
  background-color: #fff;
  font-weight: 500;
  font-size: 0.8rem;
  border-radius: 20px;
  border: none;
  padding: 0.25rem 0.75rem;
}

/* --- Breakpoint tokens (Bootstrap 5) --- */
/* --- Handy mixins --- */
/* 360px wide */
@media (max-width: 500px) {
  .hero {
    padding: 0 20px;
  }
  .hero .scroll-down-btn {
    left: 80%;
  }
  .navbar img {
    width: 100%;
  }
  .navbar-collapse,
  .navbar-collapse.collapsing {
    margin-top: 30px;
  }
  .btn.learn-more {
    width: 70%;
  }
  .btn.see-all {
    width: 55%;
  }
  .btn.read-more {
    width: 65%;
  }
  .diagonal-header {
    padding: 60px 0;
    clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
  }
  .diagonal-header .sub-heading {
    font-size: 18px;
    line-height: 33px;
  }
  .components-container {
    margin-top: 1.5rem;
  }
  footer {
    font-size: 16px;
  }
  footer ul {
    font-size: 16px;
  }
}
/* “General phone” band (covers iPhone 14 / Pixel 7 / iPhone 14 Pro Max) */
@media (max-width: 767.98px) {
  .hero {
    padding: 0 20px;
  }
  .card-lightblue .card-img,
  .card-lightgreen .card-img {
    width: 100%;
  }
  .ce-box img {
    width: 20%;
  }
  .btn.read-more,
  .btn.see-all {
    width: 50%;
  }
  .btn.learn-more {
    width: 60%;
  }
  .components-container {
    margin-top: 1.5rem;
  }
  footer {
    font-size: 16px;
  }
  footer ul {
    font-size: 16px;
  }
}
/* ==========================================================
   Tablets 
   ========================================================== */
/* Tablet base (covers iPad + iPad Pro widths) */
@media (min-width: 768px) and (max-width: 1024px) {
  .navbar img {
    width: 50%;
  }
  .navbar-nav {
    width: 620px;
  }
  .hero .hero-text {
    font-size: clamp(22px, 2.2vw, 26px);
  }
  .btn.learn-more {
    width: 55%;
  }
  .btn.read-more,
  .btn.see-all {
    width: 35%;
  }
  .components-container {
    margin-top: 2rem;
  }
  footer {
    font-size: 16px;
  }
  footer ul {
    font-size: 16px;
  }
}
/* iPad (classic) portrait: 768×1024 */
@media (width: 768px) and (height: 1024px) and (orientation: portrait) {
  .hero .hero-title {
    margin-top: 80px;
    font-size: clamp(40px, 5vw, 45px);
    line-height: clamp(56px, 6vw, 65px);
  }
  .btn.read-more {
    width: 45%;
  }
  .btn.see-all {
    width: 65%;
  }
  footer {
    font-size: 16px;
  }
  footer ul {
    font-size: 16px;
  }
}
/* iPad Pro 11 portrait: 834×1194 */
@media (width: 834px) and (height: 1194px) and (orientation: portrait) {
  .diagonal-header.avas {
    height: 710px;
  }
}
/* iPad Pro 12.9 portrait: 1024×1366 */
@media (width: 1024px) and (height: 1366px) and (orientation: portrait) {
  .diagonal-header.avas {
    height: 710px;
  }
  footer {
    font-size: 16px;
  }
  footer ul {
    font-size: 16px;
  }
}
/* Tablet landscape (iPad family) */
@media (min-width: 768px) and (max-width: 1366px) and (orientation: landscape) {
  .hero .hero-title {
    margin-top: 120px;
    font-size: clamp(42px, 4vw, 45px);
  }
  .card .my-md-5 {
    margin: 0 !important;
  }
  footer {
    font-size: 16px;
  }
  footer ul {
    font-size: 16px;
  }
}
/* ==========================================================
   3) Desktop+ (leave mostly to base styles)
   ========================================================== */
@media (min-width: 992px) {
  .diagonal-header {
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
  }
  .diagonal-header h1 {
    font-size: 40px;
  }
  .diagonal-header.avas {
    padding-bottom: 140px;
  }
  .components-container {
    margin-top: -100px;
    margin-bottom: 70px;
  }
}

/*# sourceMappingURL=main.css.map */