@charset "UTF-8";
/* @import removed - files are loaded directly in HTML for better performance */
/*========================================================
                      Main Styles
=========================================================*/
body {
  color: #0a0c23;
  font: 400 20px/1.5 "Roboto", sans-serif;
  -webkit-text-size-adjust: none;
  background: #0A1923;
  position: relative;
}

img {
  max-width: 100%;
  height: auto;
}

/*================     Typography     ===================*/
h1, h2, h3, h4, h5, h6, .heading-1, .heading-2, .heading-3, .heading-4, .heading-5, .heading-6 {
  color: #1c2160;
}

h1, .heading-1 {
  font-size: 120px;
  line-height: 120px;
}

h2, .heading-2 {
  font-size: 108px;
  line-height: 1.11111111;
  font-weight: 300;
}
@media (max-width: 1199px) {
  h2, .heading-2 {
    font-size: 80px;
  }
}
@media (max-width: 991px) {
  h2, .heading-2 {
    font-size: 70px;
  }
}
@media (max-width: 479px) {
  h2, .heading-2 {
    font-size: 40px;
  }
}

h3, .heading-3 {
  font-size: 40px;
  line-height: 1.125;
}
@media (max-width: 479px) {
  h3, .heading-3 {
    font-size: 30px;
  }
}

h4, .heading-4 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
}

h5, .heading-5 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
}

h6, .heading-6 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
}

p .fa, .marked-list .fa, .list .fa {
  text-decoration: none;
}

small, .small {
  font-size: .8em;
  line-height: 1.25;
}

.big {
  font-size: 1.5em;
}

time {
  display: block;
}

a {
  font: inherit;
  color: inherit;
  text-decoration: none;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
a:focus {
  outline: none;
}
a:active {
  background-color: transparent;
}

a[href^="tel:"],
a[href^="callto:"],
a[href^="mailto:"] {
  color: inherit;
  text-decoration: none;
  position: relative;
}
a[href^="tel:"]:after,
a[href^="callto:"]:after,
a[href^="mailto:"]:after {
  background: #2E369D;
  position: absolute;
  top: 100%;
  left: 0px;
  width: 100%;
  height: 1px;
  content: "";
  opacity: 0;
  transition: height 0.2s ease 0s, opacity 0.2s ease 0s, transform 0.2s ease 0s;
  transform: translateY(-10px);
}
a[href^="tel:"]:hover:after,
a[href^="callto:"]:hover:after,
a[href^="mailto:"]:hover:after {
  height: 2px;
  opacity: 1;
  transform: translateY(0px);
}

.fa {
  line-height: inherit;
}

[class*='fa-']:before {
  font-weight: 400;
  font-family: "FontAwesome";
}

.page {
  overflow: hidden;
  min-height: 500px;
}
.lt-ie9 .page {
  min-width: 1200px;
}

/*=======================================================
                       Main Layout
=========================================================*/
/*==================    Offsets      ======================*/
* + p {
  margin-top: 30px;
}

h4 + p {
  margin-top: 18px;
}

* + .btn {
  margin-top: 58px;
}

* + .btn-md {
  margin-top: 112px;
}

* + .inline-list {
  margin-top: 20px;
}

* + .flex-list {
  margin-top: 83px;
}

* + .subscribe-form {
  margin-top: 32px;
}

* + .offset-1 {
  margin-top: 10px;
}

/*==================    Postfix      ======================*/
/*==================    Preffix      ======================*/
/*==================    Insets      ======================*/
.inset-1 {
  padding-top: 103px;
  padding-left: 100px;
}
@media (max-width: 991px) {
  .inset-1 {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.inset-2 {
  padding-top: 35px;
}
.inset-3 {
  padding-top: 43px;
  padding-right: 100px;
}
@media (max-width: 991px) {
  .inset-3 {
    padding-right: 30px;
    padding-left: 30px;
    padding-bottom: 30px;
  }
}
@media (max-width: 479px) {
  .inset-3 {
    padding-right: 15px;
    padding-left: 15px;
    padding-bottom: 15px;
  }
}
.inset-4 {
  padding-left: 100px;
  padding-top: 30px;
  padding-bottom: 50px;
}
@media (max-width: 991px) {
  .inset-4 {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 479px) {
  .inset-4 {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.inset-5 {
  padding-top: 32px;
}
.inset-6 {
  padding-top: 43px;
  padding-bottom: 70px;
}

/*==================      Well     ======================*/
.well {
  padding: 120px 0 100px;
}

.well-2 {
  padding: 70px 0 70px;
}

/*=======================================================
                        Helpers
=========================================================*/
/*================    Basic Helpers    ==================*/
.round {
  border-radius: 50%;
}

.full {
  width: 100%;
}

/*==================    Text Styling      ======================*/
.italic {
  font-style: italic;
}

.underline {
  text-decoration: underline;
}

.strike {
  text-decoration: line-through;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

.text-lowercase {
  text-transform: lowercase;
}

.thin {
  font-weight: 100;
}

.light {
  font-weight: 300;
}

.normal {
  font-weight: 400;
}

.medium {
  font-weight: 500;
}

.sbold {
  font-weight: 600;
}

strong, .bold {
  font-weight: 700;
}

.ubold {
  font-weight: 900;
}

/*==================     Text Align    ======================*/
.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

@media (max-width: 1199px) {
  .text-md-center {
    text-align: center;
  }

  .text-md-right {
    text-align: right;
  }

  .text-md-left {
    text-align: left;
  }
}
@media (max-width: 991px) {
  .text-sm-center {
    text-align: center;
  }

  .text-sm-right {
    text-align: right;
  }

  .text-sm-left {
    text-align: left;
  }
}
@media (max-width: 767px) {
  .text-xs-center {
    text-align: center;
  }

  .text-xs-right {
    text-align: right;
  }

  .text-xs-left {
    text-align: left;
  }
}
@media (max-width: 479px) {
  .text-xxs-center {
    text-align: center;
  }

  .text-xxs-right {
    text-align: right;
  }

  .text-xxs-left {
    text-align: left;
  }
}
/*================      Floating      =================*/
.pull-left {
  float: left;
}

.pull-none {
  float: none;
}

.pull-right {
  float: right;
}

@media (max-width: 1199px) {
  .pull-md-none {
    text-align: center;
  }

  .pull-md-right {
    text-align: right;
  }

  .pull-md-left {
    text-align: left;
  }
}
@media (max-width: 991px) {
  .pull-sm-none {
    text-align: center;
  }

  .pull-sm-right {
    text-align: right;
  }

  .pull-sm-left {
    text-align: left;
  }
}
@media (max-width: 767px) {
  .pull-xs-none {
    text-align: center;
  }

  .pull-xs-right {
    text-align: right;
  }

  .pull-xs-left {
    text-align: left;
  }
}
/*================       Colors       ==================*/
.text-default {
  color: #000;
}

.text-contrast {
  color: #fff;
}

.text-primary {
  color: #2E369D;
}

/*==================  Backgrounds  ======================*/
.bg-primary {
  background: #2E369D;
}

.bg-contrast {
  background: #fff;
}

.bg-contrast--after {
  position: relative;
}
.bg-contrast--after:after {
  content: '';
  position: absolute;
  background: #FFFFFF;
  height: 100%;
  width: 5000px;
  left: 100%;
  top: 0;
}
@media (max-width: 991px) {
  .bg-contrast--after:after {
    display: none;
  }
}

.bg-contrast--before {
  position: relative;
}
.bg-contrast--before:before {
  content: '';
  position: absolute;
  background: #FFFFFF;
  height: 100%;
  width: 5000px;
  right: 100%;
  top: 0;
}
@media (max-width: 991px) {
  .bg-contrast--before:before {
    display: none;
  }
}

.bg-img {
  -webkit-background-size: cover;
  background-size: cover;
}
@media (max-width: 1199px) {
  .bg-img {
  }
}

/*=======================================================
                        Components
=========================================================*/
/*==================     Brand     ======================*/
.brand {
  display: inline-block;
  background: #2E369D;
  padding: 32.5px 38px;
}
.brand_name {
  font-weight: 500;
  overflow: hidden;
  font-variant: small-caps;
  color: #FFFFFF;
  font-size: 35px;
  line-height: 35px;
}

/*==================    Images     ======================*/
.image-wrap-1 {
  position: relative;
}
.image-wrap-1 img {
  max-width: none;
  position: absolute;
  left: 100%;
  bottom: 0;
}
@media (max-width: 991px) {
  .image-wrap-1 img {
    position: static;
    max-width: 100%;
    width: 100%;
    margin-top: 30px;
  }
}

/*==================     Icons     ======================*/
.icon {
  display: inline-block;
}

.icon.fa-facebook,
.icon.fa-twitter,
.icon.fa-google-plus,
.icon.fa-skype,
.icon.fa-instagram {
  font-size: 20px;
  line-height: 20px;
}
.icon.fa-facebook:hover,
.icon.fa-twitter:hover,
.icon.fa-google-plus:hover,
.icon.fa-skype:hover,
.icon.fa-instagram:hover {
  color: #5d65d0;
}

/*==================    Buttons    ======================*/
.btn {
  display: inline-block;
  background: transparent;
  text-align: center;
  position: relative;
  z-index: 1;
  transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}
.btn:before {
  transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0;
  transform: scale3d(0.7, 1, 1);
  transition-property: transform, opacity;
  transition-duration: 0.7s, 0.4s;
  transition-delay: 0s, 0s;
}
.btn:hover:before {
  opacity: 1;
  transform: translate3d(0px, 0px, 0px);
}

.btn-md {
  font-weight: 700;
  font-size: 20px;
  line-height: 35px;
  padding: 17.5px 88px;
  overflow: hidden;
}
.btn-md--mod {
  padding: 17.5px 30px;
  overflow: visible;
}

.btn-lg {
  overflow: hidden;
  font-weight: 700;
  font-size: 30px;
  line-height: 35px;
  padding: 37.5px 63px;
}
@media (max-width: 479px) {
  .btn-lg {
    padding: 30px 50px;
    font-size: 25px;
    line-height: 30px;
  }
}

.btn-primary {
  color: #FFFFFF;
  background: #2E369D;
}
.btn-primary:before {
  background: #5d65d0;
}
.btn-primary:active {
  -webkit-box-shadow: 0 0 5px #2E369D;
  -moz-box-shadow: 0 0 5px #2E369D;
  box-shadow: 0 0 5px #2E369D;
}

/*==================   Flex List   ======================*/
.flex-list {
  display: table;
  table-layout: fixed;
  width: 100%;
}
.flex-list li {
  display: table-cell;
  text-align: center;
}
.flex-list li a:hover {
  opacity: 0.7;
}
@media (max-width: 991px) {
  .flex-list, .flex-list li {
    display: block;
  }
  .flex-list li + li {
    margin-top: 30px;
  }
}

/*==================  Inline List  ======================*/
.inline-list li {
  display: inline-block;
}
.inline-list li + li {
  margin-left: 25px;
}

/*==================  Contact-info   ======================*/
.contact-info {
  display: inline-block;
}
.contact-info address + dl {
  margin-top: 27px;
}
.contact-info dl {
  font-size: 16px;
  line-height: 20px;
}
.contact-info dl dt, .contact-info dl dd {
  display: inline-block;
}
.contact-info dl dt + dd {
  margin-left: -4px;
}
.contact-info dl a[href^="callto:"]:after {
  background: #fff;
}
.contact-info dl a[href^="callto:"]:hover:after {
  height: 1px;
}
.contact-info dl a[href^="mailto:"] {
  color: #5d65d0;
}
.contact-info dl a[href^="mailto:"]:after {
  background: #5d65d0;
}
.contact-info dl.email dt + dd {
  margin-left: 0px;
}

/*==================  Thumb wrap   ======================*/
@media (max-width: 991px) {
  .thumb-wrap:before, .thumb-wrap:after {
    display: table;
    content: "";
    line-height: 0;
  }
  .thumb-wrap:after {
    clear: both;
  }
}
.thumb-wrap .thumb {
  display: inline-block;
}
@media (max-width: 991px) {
  .thumb-wrap .thumb {
    float: left;
    width: 50%;
  }
  .thumb-wrap .thumb:first-child {
    width: 100%;
  }
}

/*==================  Product   ======================*/
.product_img {
  overflow: hidden;
  width: 100%;
}
.product_img img {
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.product_caption {
  color: #FFFFFF;
  background: #2E369D;
  padding: 25px 30px 35px;
}
.product_caption h1, .product_caption h2, .product_caption h3, .product_caption h4, .product_caption h5, .product_caption h6, .product_caption .heading-1, .product_caption .heading-2, .product_caption .heading-3, .product_caption .heading-4, .product_caption .heading-5, .product_caption .heading-6 {
  color: #FFFFFF;
}
.product:hover .product_img img {
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

/*=======================================================
                     Script Modules
=========================================================*/
/*==================     ToTop     ======================*/
.toTop {
  width: 50px;
  height: 50px;
  font-size: 32px;
  line-height: 50px;
  color: #fff;
  background: #2633a1;
  border-radius: 50%;
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: none;
  overflow: hidden;
  text-align: center;
  text-decoration: none;
  z-index: 9999;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}
.toTop:hover {
  color: #fff;
  background: #5965d4;
  text-decoration: none;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.mobile .toTop,
.tablet .toTop {
  display: none !important;
}

@media (max-width: 767px) {
  .toTop {
    width: 45px;
    height: 45px;
    font-size: 28px;
    line-height: 45px;
    bottom: 20px;
    right: 20px;
  }
}

/*==================  RD Parallax    ======================*/
.parallax {
  position: relative;
  overflow: hidden;
}
.parallax_image, .parallax_pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-position: center center;
  will-change: transform;
}
.parallax_image {
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
}
.parallax_pattern {
  background-repeat: repeat;
}
.parallax_cnt {
  position: relative;
}

/*==================   Thumbnail    ======================*/
.thumb {
  display: block;
  position: relative;
  overflow: hidden;
}
.thumb img {
  width: 100%;
  height: auto;
  -moz-transition: 0.5s all ease;
  -o-transition: 0.5s all ease;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
}
.thumb_overlay {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  -moz-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
  color: #fff;
  background: transparent;
}
.thumb_overlay:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  font: 400 40px "Material Icons";
  line-height: 40px;
  margin-top: -20px;
  text-align: center;
}
.lt-ie9 .thumb_overlay:before {
  display: none;
}
.thumb:hover .thumb_overlay {
  opacity: 1;
  background: rgba(46, 54, 157, 0.5);
}
.lt-ie9 .thumb:hover .thumb_overlay {
  background: none;
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#802E369D', endColorstr='#802E369D')";
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#802E369D', endColorstr='#802E369D');
  zoom: 1;
}
.lt-ie9 .thumb:hover .thumb_overlay:before {
  display: block;
}
.thumb:hover img {
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

/*==================  cbp-so-scroller   ======================*/
.cbp-so-scroller {
  overflow: hidden;
}

.cbp-so-section {
  position: relative;
  overflow: hidden;
}

/* Initial state (hidden or anything else) */
.cbp-so-init .cbp-so-side {
  opacity: 0;
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}

.cbp-so-init .cbp-so-side-left {
  -webkit-transform: translateX(-80px);
  -moz-transform: translateX(-80px);
  transform: translateX(-80px);
}

.cbp-so-init .cbp-so-side-right {
  -webkit-transform: translateX(80px);
  -moz-transform: translateX(80px);
  transform: translateX(80px);
}

/* Animated state */
/* add you final states (transition) or your effects (animations) for each side */
.cbp-so-section.cbp-so-animate .cbp-so-side-left,
.cbp-so-section.cbp-so-animate .cbp-so-side-right {
  -webkit-transition: -webkit-transform .7s, opacity 0.5s;
  -moz-transition: -moz-transform .7s, opacity 0.5s;
  transition: transform .7s, opacity 0.5s;
  -webkit-transform: translateX(0px);
  -moz-transform: translateX(0px);
  transform: translateX(0px);
  opacity: 1;
}

/* For example, add a delay for the right side:*/
.cbp-so-section.cbp-so-animate .cbp-so-side-right {
  -webkit-transition-delay: 0.3s;
  -moz-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

/*========================================================
                     HEADER  Section
=========================================================*/
header {
  background: #1c2160;
  position: relative;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
header .brand {
  float: left;
}
header .main-nav {
  float: right;
  height: 100px;
  display: flex;
  align-items: center;
}
header .nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  height: 100%;
}
header .nav-list li {
  display: inline-block;
  margin: 0;
  padding: 0;
  height: 100%;
  display: flex;
  align-items: center;
}
header .nav-list li + li {
  margin-left: 0;
}
header .nav-list a {
  display: block;
  padding: 0 25px;
  height: 100%;
  line-height: 100px;
  color: #FFFFFF;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}
header .nav-list a:hover,
header .nav-list a.active {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.1);
}
header .nav-list a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #FFFFFF;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
header .nav-list a:hover:after,
header .nav-list a.active:after {
  transform: scaleX(1);
}
@media (max-width: 991px) {
  header {
    text-align: center;
  }
  header .container {
    flex-direction: column;
    padding: 15px 0;
  }
  header .brand {
    width: 100%;
    float: none;
    margin-bottom: 15px;
  }
  header .main-nav {
    float: none;
    width: 100%;
    height: auto;
    justify-content: center;
  }
  header .nav-list {
    flex-wrap: wrap;
    justify-content: center;
  }
  header .nav-list li {
    height: auto;
  }
  header .nav-list a {
    padding: 10px 15px;
    line-height: 1.5;
    height: auto;
    font-size: 14px;
  }
  header .nav-list a:after {
    display: none;
  }
}
@media (max-width: 479px) {
  header .nav-list a {
    padding: 8px 10px;
    font-size: 12px;
  }
}

/*========================================================
                     CONTENT  Section
=========================================================*/
main {
  display: block;
  background: #d6e6f3;
}

/*========================================================
                     FOOTER  Styles
=========================================================*/
footer {
  padding-top: 70px;
  padding-bottom: 44px;
  background: #0A1923;
  color: #FFFFFF;
}
@media (max-width: 1199px) {
  footer {
    padding-bottom: 120px;
  }
}

/*========================================================
                  Enhanced Section Styles
=========================================================*/
/* Course Cards with shadows and hover effects */
.course-card {
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  transition: all 0.3s ease;
  margin-bottom: 30px;
}
.course-card:hover {
  box-shadow: 0 5px 25px rgba(46, 54, 157, 0.15);
  transform: translateY(-3px);
}
@media (max-width: 991px) {
  .course-card {
    margin-bottom: 30px;
  }
}

/* Content Cards for additional pages - proper spacing and borders */
.content-card {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  margin-bottom: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.content-card:hover {
  box-shadow: 0 4px 20px rgba(46, 54, 157, 0.12);
  transform: translateY(-2px);
  border-color: rgba(46, 54, 157, 0.2);
}
.content-card h3,
.content-card h4 {
  margin-top: 0;
  margin-bottom: 20px;
}
.content-card p {
  margin-bottom: 15px;
}
.content-card p:last-child {
  margin-bottom: 0;
}
.content-card .marked-list {
  margin-top: 20px;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .content-card {
    margin-bottom: 30px;
  }
}

/* Proper spacing for rows on additional pages */
section .row + .row {
  margin-top: 30px;
}
section .row.offset-1 {
  margin-top: 40px;
}
section .row.offset-2 {
  margin-top: 50px;
}

/* Additional page content spacing */
main section {
  margin-bottom: 0;
}
main section + section {
  margin-top: 0;
}

/* Content wrapper spacing */
.content-card {
  padding: 30px;
}
@media (max-width: 991px) {
  .content-card {
    padding: 25px 20px;
  }
}
@media (max-width: 479px) {
  .content-card {
    padding: 20px 15px;
  }
}

/* Ensure proper spacing between columns */
.row [class*="col-"] + [class*="col-"] {
  margin-top: 0;
}
@media (max-width: 991px) {
  .row [class*="col-md-"] + [class*="col-md-"],
  .row [class*="col-lg-"] + [class*="col-lg-"] {
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .row [class*="col-sm-"] + [class*="col-sm-"] {
    margin-top: 30px;
  }
}

/* Process Steps with better styling */
.process-container {
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}

.process-steps {
  margin-top: 50px;
}

.process-step {
  padding: 30px 20px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.process-step:hover {
  transform: translateY(-5px);
}

.step-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background: #2E369D;
  color: #FFFFFF;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px rgba(46, 54, 157, 0.3);
}

.process-step h4 {
  margin-top: 15px;
  margin-bottom: 15px;
}

.process-step p {
  color: #666;
  line-height: 1.6;
}

@media (max-width: 991px) {
  .process-step {
    margin-bottom: 40px;
  }
  
  .step-number {
    width: 45px;
    height: 45px;
    line-height: 45px;
    font-size: 20px;
  }
}

/* Inset-7 and Inset-8 definitions if missing */
.inset-7 {
  padding: 50px 40px;
}
@media (max-width: 991px) {
  .inset-7 {
    padding: 40px 30px;
  }
}
@media (max-width: 479px) {
  .inset-7 {
    padding: 30px 20px;
  }
}

.inset-8 {
  padding: 60px 50px;
}
@media (max-width: 991px) {
  .inset-8 {
    padding: 50px 30px;
  }
}
@media (max-width: 479px) {
  .inset-8 {
    padding: 40px 20px;
  }
}

/* Enhanced marked-list styling */
.marked-list {
  list-style: none;
  padding-left: 0;
  margin-top: 25px;
}

.marked-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  line-height: 1.6;
  color: #555;
}

.marked-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2E369D;
  font-weight: 700;
  font-size: 18px;
}

.course-card .marked-list li {
  color: #666;
}
footer h1, footer h2, footer h3, footer h4, footer h5, footer h6 {
  color: #5d65d0;
}
footer h4 {
  letter-spacing: 1.2px;
}
footer .brand {
  background: #1c2160;
}
footer .copyright {
  margin-top: 15px;
  font-size: 16px;
}
@media (max-width: 1199px) {
  footer .copyright {
    margin-top: 60px;
  }
}
