/* TOP BAR */
.top-bar {
  background: #f5f5f5;
  font-size: 14px;
}

.top-bar a {
  margin-left: 20px;
  color: #333;
  text-decoration: none;
}

.top-bar i {
  margin-right: 5px;
}

/* LOGO */
.logo-blue {
  color: #1f3c88;
  font-size: 20px;
  letter-spacing: 2px;
}

.logo-red {
  color: #e53935;
  font-size: 20px;
  letter-spacing: 2px;
}

.small-text {
  font-size: 12px;
  color: #666;
}

/* NAV */
.navbar .nav-item {
  font-weight: 500;
  cursor: pointer;
}

/* HERO */
/* HERO BASE */
#hero {
  position: relative;
  height: 450px;
}

/* LEFT SIDE BACKGROUND */
.hero-left {
  background: #f6f6f6;
  height: 450px;
}

/* RIGHT ANGLE */
.hero-angle {
  position: relative;
  height: 450px;
}

.hero-angle img{
  width: 100%;
  height: 100%;
}

.hero-angle polygon {
  fill: #f6f6f6;
}

/* OVERLAY CONTENT */
#hero-overlay {
  position: absolute;
  top: 150px;
  width: 100%;
}

/* TEXT STYLING */
.hero-title {
  font-size: 40px;
  color: #2c2c84;
  font-weight: 600;
}

.hero-text {
  margin-top: 30px;
  margin-bottom: 30px;
  font-size: 16px;
  color: #333;
  line-height: 1.7;
}

/* BUTTONS */
.btn-blue {
  background: #2c4b9b;
  color: white;
  padding: 12px;
}

.btn-blue:hover {
  background: #1c3572;
  color: #fff;
}

.btn-red {
  background: #e53935;
  color: white;
  padding: 12px;
}

.btn-red:hover {
  background: #c62828;
  color: #fff;
}




/* SECTION TITLE */
.section-title {
  color: #2c2c84;
  font-size: 36px;
  font-weight: 600;
}

/* CARD DESIGN */
.pwm-card {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  transition: 0.3s;
  height: 100%;
  border: 1px solid #eee;
}

.pwm-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* ICON */
.pwm-icon {
  font-size: 40px;
  color: #2c4b9b;
  margin-bottom: 15px;
}

/* TEXT */
.pwm-card h4 {
  margin-bottom: 10px;
  font-weight: 600;
}

.pwm-card p {
  color: #555;
  font-size: 15px;
}

/* LINKS */
.pwm-card a {
  display: block;
  color: #2c4b9b;
  text-decoration: none;
  margin-bottom: 5px;
  font-size: 14px;
}

.pwm-card a:hover {
  text-decoration: underline;
}

/* SECTION */
.two-col-section {
  background: #f6f6f6;
}

/* TEXT STYLING */
.title-blue {
  color: #2c2c84;
  font-size: 36px;
  font-weight: 600;
}

.subtitle {
  font-size: 24px;
  margin: 10px 0;
  font-weight: 500;
}

.desc {
  color: #555;
  font-size: 19px;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* BUTTON */
.btn-blue {
  background: #2c4b9b;
  color: #fff;
  padding: 12px 25px;
  border-radius: 4px;
}

.btn-blue:hover {
  background: #1c3572;
  color: #fff;
}


/* SECTION */
.overview-section {
  background: linear-gradient(233.48deg, #4062AB 52.06%, #323087 102.01%);
  color: #fff;
}

/* TITLE */
.overview-title {
  font-size: 32px;
  color: #FFDCA8;
  font-weight: 600;
}

/* IMAGE */
.overview-img {
  width: 90px;
  margin-bottom: 15px;
}

/* SUBTITLE */
.overview-subtitle {
    color: #FFDCA8;
  font-weight: 600;
  margin-bottom: 8px;
}

/* TEXT */
.overview-section p {
  font-size: 18px;
  line-height: 1.5;
}


/* FOOTER */
.footer-section {
  background: #2c4b9b;
  color: #fff;
}

/* LOGO */
.footer-logo {
  max-width: 140px;
}

/* HEADINGS */
.footer-heading {
  font-weight: 600;
  margin-bottom: 10px;
}

/* LINKS */
.footer-section a {
  display: block;
  color: #FFDCA8;
  text-decoration: none;
  margin-bottom: 5px;
  font-size: 14px;
}

.footer-section a:hover {
  text-decoration: underline;
}

/* SOCIAL */
.social-icons img {
  width: 30px;
  margin: 5px;
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
}

.footer-bottom p {
  font-size: 14px;
  color: #fff;
}

.footer-bottom a {
  color: #FFDCA8;
  margin: 0 5px;
}

/* MOBILE */

/* RESPONSIVE */
@media(max-width: 768px){
    .overview-title {
      font-size: 24px;
    }
     .footer-section {
    text-align: center;
  }
  #hero {
    height: auto;
  }
    .title-blue {
    font-size: 28px;
  }

  .subtitle {
    font-size: 20px;
  }
   .section-title {
    font-size: 28px;
  }

  .hero-left,
  .hero-angle {
    height: 300px;
    display: none;
  }

  #hero-overlay {
    position: static;
    background-color: #f6f6f6;
  }

  .hero-title {
    font-size: 30px;
  }
}