@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

:root {
  /* Colors */
  --primary-color: #B20E38;
  --primary-hover-color: #77132c;
  --white: #fff;
  --black: #000;
  --blue: #24396B;
  --grey: #9CA3AF;
  --dark-blue: #111827;
  --box-color-1: #C62032;
  --box-color-2: #0E7A3E;
  --box-color-3: #F89722;
  --box-color-4: #153862;

  /* Fonts */
  --primary-font: "Montserrat", sans-serif;
}

body {
  font-family: var(--primary-font);
  color: var(--black);
}

a {
  color: #0056b3;
  text-decoration: none;
}

a:hover {
  color: #0056b3;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--primary-font);
  font-weight: 700;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--primary-color);
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}

.back-to-top i {
  font-size: 28px;
  color: var(--white);
  line-height: 0;
}

.back-to-top:hover {
  background: var(--primary-hover-color);
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: var(--white);
  padding: 10px 0;
  z-index: 997;
  transition: all 0.5s;
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  font-weight: 600;
}

#header .logo img {
  max-height: 65px;
}

/*--------------------------------------------------------------
# Buttons
--------------------------------------------------------------*/

.btn-primary,
.btn-secondary {
  background: var(--primary-color);
  color: var(--white);
  padding: 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 15px;
  font-weight: 500;
  display: inline-block;
  border: none;
  outline: none;
  box-shadow: none;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--primary-hover-color);
  border-color: transparent !important;
  box-shadow: none !important;
}

.btn-secondary {
  background: var(--white);
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.btn-secondary:hover,
.btn-secondary:focus {
  background-color: var(--primary-hover-color);
  border-color: transparent !important;
  box-shadow: none !important;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

#hero {
  width: 100%;
  background-size: cover;
  position: relative;
  background-image: url(https://static.npfs.co/accounts/387/documents/2025/10/3/2308f57194e84b93958226d9665c798a_hero-bg.png);
}

#hero h1 {
  margin: 0;
  font-size: 4.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

#hero p {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 0;
  line-height: 1.6;
  font-weight: 400;
}

.contact .contact-form {
  padding: 30px;
  border-radius: 10px;
  margin-left: 60px;
  background-color: var(--white);
}

.contact .contact-form .form-heading {
  margin-bottom: 26px;
}

.contact .contact-form .form-group {
  margin-bottom: 14px;
}

.contact .contact-form input {
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.contact .contact-form input:focus {
  border-color: var(--dark-blue);
}

.contact .contact-form input {
  padding: 10px;
  background-color: #F9FAFB;
  border: 1px solid #E5E7EB;
}
.contact .contact-form .merge_field_div button{
  min-width:auto !important
}
.contact .contact-form .fade{
  opacity:1 !important;
}
.panel.dynamic_theme_block .form-custom {
    max-height: 100%;
    padding-right: 0;
}
.dynamic_theme_block .panel-body{
    box-shadow:none !important;
}

.form-group.label-floating.Mobile.country_dial_code.reg_mobile_div {
    flex-grow: 1;
}
.form-control{
  height:auto !important;
  padding: 14px;
}
.has-error .form-control {
   border: 1px solid var(--primary-color) !important
}
.dynamic_theme_block .form-custom .Mobile .form-control{
  padding:14px;
}
.dynamic_theme_block .merge_field_div .bs-dropdown-to-select-group .bs-dropdown-to-select{
  padding:14px;
}
.contact .contact-form .input-group{
  flex-wrap:nowrap;
}
.contact .contact-form .nav-tabs{
  border-bottom:0px;
  padding-bottom: 15px;
}
.contact .contact-form .nav-tabs li:not(:last-child){
  margin-right:20px;
}
.contact .contact-form .nav-tabs li a{
  background: var(--white);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 4px;
  padding: 14px 25px;
}
.contact .contact-form .nav-tabs li a.active {
  border-radius: 4px;
  padding: 14px 25px;
  min-width: 170px;
  background: var(--primary-color);
  color: var(--white);
}

#registerBtn,
#loginBtn,
#forgotBtn,
#otpSubmitBtn{
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 25px;
    white-space: nowrap;
    transition: 0.3s;
    font-size: 15px;
    font-weight: 500;
    display: inline-block;
    border: none;
    outline: none;
    box-shadow: none;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
  width:100%;
}
.form-group.label-floating.reg_course_id_div.CourseId.field-select {
    width: 100%;
    padding-right: 0px;
}
/*--------------------------------------------------------------
# CMGGA Work Sector
--------------------------------------------------------------*/

.cmgga-work-sector {
  background: var(--blue) url(https://static.npfs.co/accounts/387/documents/2025/10/3/5c4c5f4c041e45f98c12dec1288e6626_work-section-bg.png) no-repeat center / contain;
  color: var(--white);
}

.cmgga-work-sector .section-title h2 {
  color: var(--white);
}

.cmgga-work-sector .section-title h2::after {
  display: none;
}

.cmgga-work-sector .image-box {
  text-align: center;
  margin-bottom: 100px;
}

.cmgga-work-sector .image-box p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/

section {
  padding: 100px 0;
  overflow: hidden;
  position: relative;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
  position: relative;
}

.section-title h2 {
  font-size: 2.3rem;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--primary-color);
  bottom: 0;
  left: calc(50% - 25px);
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/

.services .icon-box {
  margin-bottom: 20px;
  padding: 30px 20px;
  border-radius: 6px;
  background-color: #252525;
  transition: 0.3s;
  min-height: 200px;
  text-align: center;
}

.services .box-1 .icon-box {
  background-color: var(--box-color-1);
}

.services .box-1 .icon-box:last-child {
  background-color: var(--box-color-2);
}

.services .box-2 {
  margin-top: 40px !important;
}

.services .box-2 .icon-box {
  background-color: var(--box-color-3);
}

.services .box-2 .icon-box:last-child {
  background-color: var(--box-color-4);
}

.services .icon-box h4 {
  margin-block: 8px;
  color: var(--white);
  font-size: 4rem;
  line-height: 0.8;
}

.services .icon-box h6 {
  margin-block: 8px;
  color: var(--white);
}

.services .icon-box p {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 0;
  font-weight: 300;
}
span.help-block {
    font-size: 13px;
}
/*--------------------------------------------------------------
# Steps to Follow
--------------------------------------------------------------*/

.steps-to-follow .step-box img {
  width: 100%;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
  background-color: var(--dark-blue);
  font-size: 1rem;
  color: var(--grey);
}

#footer .logo {
  text-align: center;
  background-color: var(--white);
  padding: 20px;
  margin-bottom: 25px;
  margin-right: 40px;
}

#footer .logo img {
  width: 150px;
}

#footer .footer-top {
  padding: 60px 0;
}

#footer .footer-links,
#footer .footer-contact {
  margin-bottom: 20px;
}

#footer .footer-top .footer-contact i {
  font-size: 1.4rem;
}

#footer .footer-top .footer-contact h3 {
  font-size: 26px;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top h4 {
  font-size: 1.2rem;
  position: relative;
  padding-bottom: 12px;
  color: var(--white);
}

/* Media Queries */

@media (max-width:1199px) {
  .btn-wrapper button {
    width: 100%;
  }
}

@media (max-width:991px) {
  .contact .contact-form {
    margin-left: 0;
  }
}

@media (max-width: 768px) {

  /*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/

  [data-aos-delay] {
    transition-delay: 0 !important;
  }

  section {
    padding: 60px 0;
  }

  #hero h1 {
    font-size: 2.2rem;
  }

  .contact .contact-form {
    margin: 0;
  }

  #hero p {
    font-size: 1.2rem;
  }

  .section-title {
    padding-bottom: 20px;
  }

  .section-title h2 {
    font-size: 1.6rem;
  }

  .associates-programme .section-title h2 {
    text-align: left;
  }

  .associates-programme .section-title h2::after {
    left: 0;
  }

  .services .icon-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }

  .services .box-2 {
    margin-top: 0 !important;
  }

  .cmgga-work-sector {
    background-position: top center;
  }

  .step-box {
    width: 160px;
    margin: 0 auto 20px;
  }

  #footer .footer-top {
    padding-bottom: 0;
  }

  #footer .logo {
    margin-right: 0;
  }

  #footer .footer-links,
  #footer .footer-contact {
    text-align: center;
  }
}