@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&display=swap');


*{
    margin:0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* General header element styles */
h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
}

h1 {
  font-size: 32px;
}

h2 {
  font-size: 28px;
  font-weight: bold;
}

h3 {
  font-size: 24px;
  font-weight: bold;
}

h4 {
  font-size: 20px;
  font-weight: bold;
}

h5 {
  font-size: 18px;
  font-weight: bold;
}

h6 {
  font-size: 16px;
  font-weight: bold;
}

/*header*/
header{
    background-color: #1e1a3e;
    padding: 10px 0px;
    color: #fff;
}

#header-content{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header li{
    list-style:none
}

.logo{
    color: #fff;
    font-size: 15px;
}

.container{
    max-width: 88vw;
    margin:auto;
}

#left-header{
    display: flex;
    align-items: center;
}

#left-header p{
    font-size: 13px;
}

#right-header {
    display: flex;
    align-items: center;
}

#right-header a{
    color: #fff;
    text-decoration: none;
    margin-left: 10px;
}

#right-header p{
    margin-left: 30px;
    font-size: 13px;
}

#left-header i{
    margin-right: 10px;
}

/*sub-header*/
#sub-header{
    position: sticky;
    top: 0;
    background-color: #fff;
    z-index: 100;
}

#sub-header-content{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0px;
}

#sub-header-left{
    display: flex;
    align-items: center;
}

#sub-header-left i{
    font-size: 40px;
    color: red;
    padding-right: 30px;
}

.lg-b{
    font-weight: bold;
    padding-bottom: 5px;
}

#sub-header-mid{
    display: flex;
    align-items: center;
}

#sub-header-mid i{
    font-size: 30px;
    padding-right: 5px;
}

#sub-header-right{
    display: flex;
    align-items: center;
}

#sub-header-right i{
    color: red;
    font-size: 30px;
}

#sub-header-right div{
    padding-left: 20px;
}

  /* Navbar styles */
  .navbar {
    background-color: rgba(0, 0, 0, 0);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    overflow: visible;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 100;
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease, -webkit-backdrop-filter 0.3s ease;
  }
  
  .navbar.scrolled {
    background-color: #ffffff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    position: fixed;
    top: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  .navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding-top: 5mm;
    padding-left: 20px;
    padding-right: 0;
    padding-bottom: 5mm;
    overflow: visible;
    min-width: 0;
    width: 100%;
    max-width: 100% !important;
    box-sizing: border-box;
  }

  .navbar-logo {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    margin-left: 0;
    padding-left: 30px;
  }

  .navbar-logo-img {
    max-width: 50px;
    height: auto;
    display: block;
  }

  .navbar-links {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    gap: 10px;
  }

  .navbar-social {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-left: 6cm;
    padding-right: 0;
    margin-right: 0;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 101;
    position: relative;
    flex-shrink: 0;
    overflow: visible;
    max-width: none;
  }

  .navbar-social a {
    color: #fff;
    font-size: 28px;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 10px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative;
    z-index: 102;
    width: auto;
    height: auto;
    min-width: 40px;
    min-height: 40px;
    overflow: visible;
  }

  .navbar-social a:hover {
    color: #ddd;
  }
  
  .navbar.scrolled .navbar-social a {
    color: #1e1a3e;
  }
  
  .navbar.scrolled .navbar-social a:hover {
    color: #3c3381;
  }
  
  .navbar-social i {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative;
    z-index: 102;
    font-size: 28px !important;
    line-height: 1;
    width: auto;
    height: auto;
    overflow: visible;
  }
  
  .navbar a {
    float: left;
    color: #fff;
    text-align: center;
    padding-top:16px;
    padding-bottom: 16px;
    padding-right: 50px;
    text-decoration: none;
    font-size: 17px;
    transition: color 0.3s ease;
  }

  .navbar-links a {
    float: left;
    color: #fff;
    text-align: center;
    padding-top:16px;
    padding-bottom: 16px;
    padding-right: 50px;
    text-decoration: none;
    font-size: 17px;
    transition: color 0.3s ease;
  }
  
  .navbar.scrolled a,
  .navbar.scrolled .navbar-links a {
    color: #1e1a3e;
  }
  
  .navbar.scrolled a:hover,
  .navbar.scrolled .navbar-links a:hover {
    color: #3c3381;
  }
  
  .navbar a.icon {
    float: right;
  }
  
  .dropdown {
    float: left;
    overflow: hidden;
  }
  
  .dropdown .dropbtn {
    font-size: 17px;    
    border: none;
    outline: none;
    color: #fff;
    padding-top:16px;
    padding-bottom: 16px;
    padding-right: 40px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
  }
  
  .navbar a:hover, .dropdown:hover .dropbtn {
    transition: all ease-in-out 0.5s;
    color: rgb(202, 202, 202);
    cursor: pointer;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }
  
  .dropdown-content a {
    float: none;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
  }
  
  .dropdown-content a:hover {
    background-color: #ddd;
  }
  
  .dropdown:hover .dropdown-content {
    display: block;
  }
  
  /* Hamburger menu styles */
  .icon {
    display: none;
    color: #fff;
    font-size: 24px;
    padding: 16px;
    cursor: pointer;
    transition: transform 0.3s ease, color 0.3s ease;
  }
  
  .navbar.scrolled .icon {
    color: #1e1a3e;
  }

  .icon i.fa-times {
    font-size: 24px;
  }

  /*background section*/
  #back-sec{
    margin-bottom: 80px;
    height: 100vh;
    width: 100%;
    position: relative;
    margin-top: 0;
  }

  .overlay{
    width: 100%;
    background: linear-gradient(to right, rgba(30, 26, 62, 0.9) 0%, rgba(30, 26, 62, 0.7) 50%, rgba(30, 26, 62, 0.3) 70%, transparent 100%);
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
  }

  .bac-sec-content{
    background-image: url(../image/im30.jpeg);
    background-position:  center center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }

  .bac-sec-content .container{
    height: 100%;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    width: 100%;
    padding-bottom: 0;
  }

  .bac-flex{
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    height: auto;
    text-align: left;
    color: #fff;
    padding: 0 60px;
    box-sizing: border-box;
    align-items: flex-start;
    gap: 15px;
    max-width: 600px;
    width: 100%;
  }

  .hero-logo-container{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 15px;
  }

  .hero-logo{
    max-width: 200px;
    width: 100%;
    height: auto;
    display: block;
  }

  .bac-flex h1{
    font-size: 48px;
    font-weight: 600;
    padding-bottom: 20px;
    line-height: 1.2;
    white-space: normal;
    word-wrap: break-word;
    text-transform: uppercase;
    width: 100%;
    max-width: 600px;
    font-family: 'Playfair Display', serif;
    letter-spacing: 1px;
  }

  .bac-flex p{
    max-width: 600px;
    line-height: 28px;
    font-size: 18px;
  }

  .sub{
    display: flex;
    justify-content: flex-start;
    margin-bottom: 30px;
    width: 100%;
    max-width: 600px;
  }
  
  .sub p{
    text-align: left;
    margin: 0;
  }
  .buttons{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }
  .buttons a{
    text-decoration: none;
    color: #fff;
    padding: 15px 25px;
    display: inline-block;
    margin-right: 20px;
  }

  .buttons .b1{
    background-color: #3c3381;
    transition: all ease-in-out 0.5s;
  }

  .buttons .b2{
    background-color: red;
    transition: all ease-in-out 0.5s;
  }

  .buttons .b2:hover{
    background-color: rgb(164, 3, 3);
  }

  .buttons .b1:hover{
    background-color: rgb(23, 2, 55);
  }

  /*about*/
  #about{
    margin-bottom: 60px;
  }

  .about-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
  }

  .about-text {
    flex: 1;
  }

  .about-image {
    flex: 0 0 400px;
  }

  .about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
  }

  #about h3{
    font-weight: bold;
    font-size: 24px;
    text-align: left;
    padding-bottom: 20px;
    color: #1e1a3e;
  }

  #about p{
    text-align: left;
    padding-bottom: 10px;
  }

  /* Proprietor's Message - Blurb Style */
  .proprietor-message {
    display: flex;
    align-items: flex-start;
    max-width: 500px;
    margin-left: 0;
    margin-top: 20px;
  }

  .proprietor-message-text {
    flex: 1;
    width: 100%;
    overflow: hidden;
  }

  .proprietor-message-centered {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
  }

  .proprietor-message-text-centered {
    max-width: 800px;
    width: 100%;
    text-align: center;
    overflow: hidden;
  }

  .proprietor-quote-centered {
    color: #666;
    font-size: 15px;
    line-height: 24px;
    font-style: italic;
    text-align: center;
    margin: 0 auto;
    position: relative;
    padding: 0 20px;
    overflow: hidden;
    max-height: none;
    height: auto;
  }

  #messages {
    overflow: hidden;
  }

  .proprietor-quote-centered .quote-start {
    position: relative;
    left: auto;
    top: auto;
    margin-right: 5px;
  }

  .proprietor-quote-centered .quote-end {
    margin-left: 5px;
  }

  #courses .proprietor-quote {
    color: #666;
    font-size: 15px;
    line-height: 24px;
    font-style: italic;
    text-align: left;
    margin: 0;
    position: relative;
    padding-left: 25px;
    overflow: visible;
    max-height: none;
  }

  .proprietor-quote {
    color: #666;
    font-size: 15px;
    line-height: 24px;
    font-style: italic;
    text-align: left;
    margin: 0;
    position: relative;
    padding-left: 25px;
  }

  .quote-mark {
    font-size: 36px;
    line-height: 0;
    vertical-align: -0.4em;
    opacity: 0.3;
    font-family: Georgia, serif;
  }

  #courses .quote-mark {
    color: #999;
  }

  .quote-start {
    position: absolute;
    left: 0;
    top: 0;
  }

  .quote-end {
    margin-left: 5px;
  }

  .line{
    width: 150px;
    height: 3px;
    background-color: red;
  }

  .line-bod{
    display: flex;
    justify-content: center;
  }

  /*Welcome*/
  #welcome{
    margin-bottom: 150px;
  }

  .welc-left{
    width: 47%;
  }

  .welc-left img{
    width: 100%;
    
  }

  .welcome-content{
    display: flex;
    justify-content: space-between;
    width: 100%;
  }

  .welc-right{
    width: 47%;
    text-align: justify;
  }

  .welc-right h3{
    margin-bottom: 30px;
    font-size: 24px;
    font-weight: bold;
    color: #1e1a3e;
  }

  .welc-right p{
    line-height: 25px;
    font-size: 15px;
  }

  .welc-right li{
    list-style: none;
    padding-bottom: 5px;
  }

  .liheader{
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .dropp,
  .dropp2,
  .dropp3{
    display: none;
  }
  
  .liheader i:hover{
    cursor: pointer;
  }

  .show{
    display: block;
  }

  .li1,.li2,.li3{
    padding: 10px 15px;
  }

  #t1,#t2,#t3,.t3{
    padding: 5px 15px;
  }

  .dropp3 ul{
    list-style:circle;
  }

  .dropp3 ul li{
    list-style: circle;
  }

  /*Courses*/
  .course{
    width: 100%;
    max-width: 350px;
    margin-bottom: 190px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }

  #courses{
    background-color: #fff;
    color: #333;
    padding: 100px 0px;
    margin-bottom: 0;
  }

  #courses h3{
    font-size: 24px;
    font-weight: bold;
    color: #1e1a3e;
  }

  #courses h3,
  #courses .cent{
    text-align: center;
    padding-bottom: 10px;
  }

  #courses .cent{
    color: #333;
  }

  #courses .line-bod{
    margin-bottom: 60px;
  }

  .course-img{
    width: 100%;
    max-width: 380px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .course-img img{
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin-bottom: 25px;
    border-radius: 8px;
  }

  .course-img .ig1{
    height: 250px;
    object-fit: cover;
  }

  .info li{
    list-style: none;
  }

  #courses .course-info{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 120px;
    justify-content: flex-start;
  }

  #courses .course-info h4{
    text-align: center;
    padding-bottom: 20px;
    font-size: 18px;
    font-weight: bold;
    color: #1e1a3e;
    width: 100%;
    margin: 0;
  }

  .course-details {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.4s ease, max-height 0.4s ease, padding 0.4s ease;
    width: 100%;
  }

  .course-details.show {
    opacity: 1;
    max-height: 500px;
    padding: 0 0 15px 0;
  }

  #courses .course-info .main{
    text-align: center;
    padding-bottom: 20px;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    color: #333;
  }

  .more-btn {
    display: inline-block;
    color: #fff;
    background-color: #070131;
    padding: 8px 20px;
    border-radius: 4px;
    text-decoration: none;
    margin: 0;
    transition: background-color 0.3s ease;
    cursor: pointer;
    font-size: 14px;
    border: 1px solid #070131;
    text-align: center;
  }

  .more-btn:hover {
    background-color: #1e1a3e;
  }

  .info{
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0 0 0;
  }

  .info li{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    gap: 8px;
  }

  .info li h5{
    margin: 0;
    font-weight: bold;
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .info li p{
    margin: 0;
    font-size: 15px;
    color: #333;
    font-weight: 500;
  }

  #courses .info h5,
  #courses .info p{
    color: #333;
  }

  #courses .info h5{
    color: #666;
  }

  #courses-content{
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: 1fr;
        grid-column-gap: 20px;
        grid-row-gap: 0px;
        align-items: start;
        justify-items: center;
  }

  /*Achieve section*/
  .ach-img{
    width: 500px;
  }

  .ach-img img{
    width: 100%;
  }

  .stat-content{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
  }

  .stats-left{
    flex: 1;
  }

  .stats-left p{
    text-align: justify;
    line-height: 25px;
    padding-bottom: 20px;
  }
  .stats-left h3{
    color: #1e1a3e;
    font-size: 24px;
    font-weight: bold;
    padding-bottom: 20px;
  }

  .stats-left p{
    color: #333;
  }

  .stats-image{
    flex: 0 0 auto;
    width: 250px;
  }

  .stats-image img{
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
  }

  #stats{
    background-color: #fff;
    color: #333;
    padding: 100px 0px;
    margin-bottom: 0;
  }

  .stats-right{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-top: 30px;
    width: 100%;
    gap: 20px;
  }

  .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    list-style: none;
    gap: 10px;
    overflow: visible !important;
    position: relative;
  }
  
  /* Ensure icons are always visible in stat items and appear first */
  .stat-item i,
  .stat-item .fas,
  .stat-item .fa {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    order: -1 !important;
  }

  /* Hide ::before and ::after for everything EXCEPT icons - but allow Font Awesome */
  .stat-item *:not(i):not(.fas):not(.fa)::before,
  .stat-item *:not(i):not(.fas):not(.fa)::after {
    display: none !important;
    content: none !important;
    visibility: hidden !important;
  }
  
  /* Explicitly show Font Awesome icon pseudo-elements - DO NOT override content */
  .stat-item i::before,
  .stat-item .fas::before,
  .stat-item .fa::before,
  .stat-item i.fas::before,
  .stat-item i.fa::before,
  .stat-item i.stat-icon::before {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  /* PRIORITY: Show stat icons and their ::before pseudo-elements */
  .stat-item i.stat-icon,
  .stat-item i.fas.stat-icon,
  .stat-item i.fa.stat-icon {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    font-size: 70px !important;
    color: #1E1A3E !important;
    margin-bottom: 25px !important;
    margin-top: 0 !important;
    width: auto !important;
    height: auto !important;
    line-height: 1 !important;
    position: relative !important;
    z-index: 100 !important;
  }
  
  /* CRITICAL: Font Awesome uses ::before - MUST show it with DARK color */
  .stat-item i.stat-icon::before,
  .stat-item i.fas.stat-icon::before,
  .stat-item i.fa.stat-icon::before {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900 !important;
    color: #1E1A3E !important;
  }

  .stat-icon {
    font-size: 70px !important;
    color: #1E1A3E !important;
    margin-bottom: 25px !important;
    margin-top: 0 !important;
    display: inline-block !important;
    opacity: 1 !important;
    visibility: visible !important;
    order: -1 !important;
    line-height: 1 !important;
    width: auto !important;
    height: auto !important;
    text-align: center !important;
    overflow: visible !important;
  }

  .stat-number {
    font-size: 36px;
    font-weight: bold;
    color: #1E1A3E;
    margin: 0;
    line-height: 1;
    list-style: none;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    user-select: none;
    display: inline-block;
    overflow: visible;
    position: relative;
    border: none !important;
    background: transparent !important;
    outline: none !important;
  }

  /* COMPLETELY REMOVE ALL SPINNER ARROWS - NO EXCEPTIONS */
  .stat-number::-webkit-inner-spin-button,
  .stat-number::-webkit-outer-spin-button,
  .stat-number::-webkit-clear-button,
  .stat-number::-webkit-inner-spin-button::before,
  .stat-number::-webkit-inner-spin-button::after,
  .stat-number::-webkit-outer-spin-button::before,
  .stat-number::-webkit-outer-spin-button::after {
    -webkit-appearance: none !important;
    margin: 0 !important;
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
    pointer-events: none !important;
    position: absolute !important;
    left: -9999px !important;
  }

  .stat-number[type="number"],
  input.stat-number {
    -moz-appearance: textfield !important;
    appearance: none !important;
  }

  .stat-number::before,
  .stat-number::after {
    display: none !important;
    content: none !important;
  }

  /* Remove any number input spinners globally for stat-numbers */
  .stat-item input[type="number"].stat-number,
  .stat-item .stat-number,
  .stat-item span.stat-number {
    -moz-appearance: none !important;
    -webkit-appearance: none !important;
    appearance: none !important;
    overflow: visible !important;
  }

  .stat-item input[type="number"].stat-number::-webkit-outer-spin-button,
  .stat-item input[type="number"].stat-number::-webkit-inner-spin-button,
  .stat-item .stat-number::-webkit-outer-spin-button,
  .stat-item .stat-number::-webkit-inner-spin-button,
  .stat-item span.stat-number::-webkit-outer-spin-button,
  .stat-item span.stat-number::-webkit-inner-spin-button {
    -webkit-appearance: none !important;
    margin: 0 !important;
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
    pointer-events: none !important;
    position: absolute !important;
    left: -9999px !important;
  }
  
  .stat-item {
    position: relative;
    overflow: visible;
  }
  
  /* Hide ::before and ::after EXCEPT for icons */
  .stat-item *:not(i):not(.fas):not(.fa)::before,
  .stat-item *:not(i):not(.fas):not(.fa)::after {
    display: none !important;
    content: none !important;
    visibility: hidden !important;
  }
  
  /* Ensure icon elements and their pseudo-elements are visible - preserve Font Awesome content */
  .stat-item i::before,
  .stat-item i::after,
  .stat-item .fas::before,
  .stat-item .fa::before,
  .stat-item i.stat-icon::before {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  /* EXPLICITLY show icons - highest priority */
  .stat-item .stat-icon,
  .stat-item i.stat-icon,
  .stat-item i.fas.stat-icon,
  .stat-item i.fa.stat-icon {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    font-size: 70px !important;
    color: #1E1A3E !important;
  }
  
  /* Show icon ::before pseudo-elements (Font Awesome requirement) */
  .stat-item i.stat-icon::before,
  .stat-item i.fas.stat-icon::before,
  .stat-item i.fa.stat-icon::before {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900 !important;
  }
  
  .stat-number * {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
  }

  .stat-item::before,
  .stat-item::after {
    display: none !important;
    content: none !important;
  }

  /* NUCLEAR OPTION - Hide ANY potential spinner controls and scrollbars in stat items */
  .stat-item *::-webkit-inner-spin-button,
  .stat-item *::-webkit-outer-spin-button,
  .stat-item *::-webkit-clear-button,
  .stat-item *::-webkit-scrollbar,
  .stat-item *::-webkit-scrollbar-button,
  .stat-item *::-webkit-scrollbar-track,
  .stat-item *::-webkit-scrollbar-track-piece,
  .stat-item *::-webkit-scrollbar-thumb,
  .stat-item *::-webkit-resizer {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    pointer-events: none !important;
    position: absolute !important;
    left: -9999px !important;
    -webkit-appearance: none !important;
  }
  
  /* EXCEPTION: Always show stat icons - override nuclear option - DO NOT override content */
  .stat-item .stat-icon,
  .stat-item i.stat-icon,
  .stat-item .stat-icon *,
  .stat-item i.stat-icon *,
  .stat-item i.fas.stat-icon::before,
  .stat-item i.fa.stat-icon::before,
  .stat-item .fas.stat-icon::before,
  .stat-item .fa.stat-icon::before {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    pointer-events: auto !important;
    position: relative !important;
    left: auto !important;
  }
  
  /* Font Awesome icons use ::before pseudo-element - DO NOT override content */
  .stat-item i.fas::before,
  .stat-item i.fa::before,
  .stat-item i.stat-icon::before {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900 !important;
  }

  #stats .card {
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px 10px;
    margin: 0;
    width: 100%;
  }

  #stats .label {
    color: #333;
    font-size: 14px;
    text-align: center;
    margin: 0;
  }

  /* ABSOLUTE GUARANTEE - No spinner arrows anywhere in stats section */
  #stats *::-webkit-inner-spin-button,
  #stats *::-webkit-outer-spin-button,
  #stats *::-webkit-clear-button,
  #stats *::-webkit-scrollbar,
  #stats *::-webkit-scrollbar-button,
  #stats *::-webkit-scrollbar-track,
  #stats *::-webkit-scrollbar-track-piece,
  #stats *::-webkit-scrollbar-thumb,
  #stats *::-webkit-resizer {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    pointer-events: none !important;
    position: absolute !important;
    left: -9999px !important;
    -webkit-appearance: none !important;
  }
  
  /* Ensure stat items don't show any scrollbars or spinners */
  .stat-item {
    overflow: visible !important;
  }
  
  .stat-item * {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
  }

  /*staff*/
  #staff{
    margin-bottom: 100px;
  }

  #staff .h3h3{
    padding-bottom: 8px;
    font-size: 24px;
    font-weight: bold;
    color: #1e1a3e;
  }

  #staff .h3h3,
  #staff .cent{
    text-align: center;
  }

  #staff .cent{
    padding-bottom: 10px;
  }

  #staff .line-bod{
    margin-bottom: 60px;
  }

  /*members*/
  .members-content{
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .member{
    width: 350px;
    position: relative;
  }

  .member img{
    width: 100%;
    height: 400px;
    object-fit:cover;
  }

  .block{
    position: absolute;
    bottom: 5px;
    color: #e3e3e3;
    background-color: rgba(0, 0, 0, 0.626);
    padding: 10px;
  }

  .map-content{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  
  .map-button {
    display: inline-block;
    text-align: center;
    margin: 0;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    padding: 15px 40px;
    background-color: #1e1a3e;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
  }

  .map-button:hover {
    background-color: #070131;
    color: #fff;
  }

  /* Proprietor's Message Quote Styling */
  #main-message p {
    font-style: italic;
    position: relative;
    margin-top: 30px;
  }

  #main-message p em {
    font-style: italic;
    display: inline;
  }

  /* Footer styles */
footer {
  background-color: #070131;
  color: rgba(255, 255, 255, 0.829);
  padding: 40px 0;
}

.container2 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-content {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.footer-column {
  flex: 1;
  min-width: 0;
  margin-bottom: 20px;
}

.footer-column.footer-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-locate {
  text-align: right;
}

.footer-locate .social-links {
  justify-content: flex-end;
}

.footer-column h3 {
  margin-bottom: 10px;
}

footer ul {
  list-style: none;
  padding: 0;
}

footer ul li {
  margin-bottom: 10px;
}

footer ul li a {
  color: #fff;
  text-decoration: none;
}

footer ul li a:hover{
  color: #ddd;
}

.social-links {
  display: flex;
  flex-direction: row;
  gap: 15px;
  margin-top: 15px;
}

.social-link {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: #ddd;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-link i {
  font-size: 20px;
}

.footer-bottom {
  margin-top: 20px;
  text-align: center;
}
.animate-character
{
   text-transform: uppercase;
  background-image: linear-gradient(
    -225deg,
    #231557 0%,
    #44107a 29%,
    #ff1313 67%,
    #7300ff 100%
  );
  background-size: auto auto;
  background-clip: border-box;
  background-size: 200% auto;
  color: #fff;
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textclip 2s linear infinite;
  display: inline-block;
      font-size: 25px;
}

@keyframes textclip {
  to {
    background-position: 200% center;
  }
}

/*Location page*/
#locate-us{
  height: 100vh;
  width: 100%;
  background: url(../image/locate_us.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
}

body {
  overflow-x: hidden;
}

.loc{
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
}

.locs{
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.locate-contact-wrapper{
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  gap: 60px;
}

.locate-content{
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background-color: transparent;
  gap: 20px;
}

.contact-content{
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background-color: transparent;
  gap: 15px;
}

.locate-content h3,
.contact-content h3{
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 0;
  color: #fff;
}

.locate-content p,
.contact-content p{
  font-size: 20px;
  color: #fff;
  margin: 0;
}

.contact-content .social-links{
  display: flex;
  gap: 15px;
}

.contact-content .social-link{
  color: #fff;
  font-size: 24px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-content .social-link:hover{
  color: #ddd;
}

.loc-content{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}

.loc-content img{
  width: 100px;
}

#loc-body{
  margin-bottom: 80px;
}

.loc-box{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.loc-box div{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.loc-box div i{
  font-size: 40px;
  padding-bottom: 10px;
}

.container3{
  max-width: 70vw;
  margin: auto;
}

#map {
  height: 400px;
  margin-bottom: 70px;
}

.mapouter {
  position: relative;
  text-align: right;
  width: 100%;
  max-width: 700px;
  height: 400px;
  margin: 0 auto;
}

.gmap_canvas {
  overflow: hidden;
  background: none !important;
  width: 100%;
  height: 400px;
}

.gmap_iframe {
  width: 100% !important;
  height: 400px !important;
}

  @media screen and (max-width: 1200px) {
    .course{
        width:280px;
      }

      .course-img{
        width: 100%;
        max-width: 280px;
      }

      .course-img img{
        height: 200px;
      }

      .course-info .main{
        width: 100%;
        max-width: 250px;
      }

      .info{
        width: 100%;
        max-width: 250px;
      }
  }

  @media screen and (max-width: 1000px) {
    #sub-header-right{
        display: none;
    }

    #sub-header-left{
        display: none;
    }

    #sub-header-content{
        display: flex;
        justify-content:center;
        align-items: center;
        padding: 20px 0px;
    }

    .member{
        width: 270px;
    }

    .container3{
      max-width: 80vw;
    }
    
}

@media screen and (max-width: 980px) {
    .about-content {
      flex-direction: column;
    }

    .about-image {
      flex: 1;
      width: 100%;
      max-width: 500px;
      margin: 0 auto;
    }

    .proprietor-message {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .proprietor-message-text {
      text-align: left;
    }

    .welcome-content{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .welc-left{
        width: 90%;
        margin-bottom: 50px;
    }

    .welc-right{
        width: 90%;
        text-align: justify;
    }

    
    #courses-content{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 1fr;
        grid-column-gap: 15px;
  }

  .stat-content{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
  }

  .stats-left{
    width: 90%;
  }

  .stats-right{
    width: 90%;
  }

  .ach-img{
    width: 100%;
  }

  .stats-left p{
    width: 100%;
  }
}

@media screen and (max-width: 930px) {
    .members-content{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        grid-column-gap: 10px;
        grid-row-gap: 10px;
    }
}

@media screen and (max-width: 890px) {
  .locate-contact-wrapper{
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
  }
  
  .locate-content,
  .contact-content{
    width: 100%;
    align-items: flex-start;
  }
}

@media screen and (max-width: 860px) {
  .container3{
    max-width: 90vw;
  }
}

@media screen and (max-width: 750px) {
  .loc-box{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }
}

@media screen and (max-width: 670px) {
    #courses-content{
       display: flex;
       flex-direction: column;
       align-items: center;
  }

  .course{
    width:100%;
  }

  .course-img{
    width: 100%;
    max-width: 350px;
    margin: auto;
  }

  .course-img img{
    height: 250px;
  }

  .course-info .main{
    width: 100%;
    max-width: 350px;
  }

  .info{
    width: 100%;
    max-width: 350px;
  }

}

@media screen and (max-width: 660px) {
    .overlay {
      width: 100%;
      background: rgba(30, 26, 62, 0.85);
      align-items: center;
    }
    
    .bac-sec-content .container {
      align-items: center;
    }
    
    .bac-flex {
      padding: 30px 30px;
      text-align: left;
      align-items: flex-start;
    }
    
    .hero-logo-container {
      justify-content: flex-start;
    }
    
    .hero-logo{
      max-width: 250px;
    }

    .bac-flex h1{
        font-size: 28px;
        white-space: normal;
        word-wrap: break-word;
        text-transform: uppercase;
    }

    .bac-flex p{
       font-size: 14px;
    }

    .locate-content h3{
      font-size: 20px;
      font-weight: bold;
      margin-bottom: 15px;
    }
}

@media screen and (max-width: 640px) {
    .members-content{
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .member{
        width: 90%;
        position: relative;
    }
}

  @media screen and (max-width: 768px) {
    /* Hide sub-header on mobile */
    #sub-header {
      display: none;
    }
    
    /* Fix navbar positioning */
    .navbar {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      width: 100%;
    }
    
    .navbar.scrolled {
      position: fixed;
      top: 0;
    }
    
    .navbar .container {
      padding-top: 5mm;
      padding-bottom: 5mm;
    }
  }

  @media screen and (max-width: 600px) {
    .navbar-logo-img {
      max-width: 40px;
    }
    .navbar-logo {
      margin-left: 0;
      padding-left: 20px;
      display: flex;
      align-items: center;
      order: 1;
      flex: 0 0 auto;
    }
    .navbar-links {
      display: none;
    }
    .navbar-links a:not(.icon), .dropdown .dropbtn {
      display: none;
    }
    .navbar-social {
      display: none !important;
      visibility: hidden !important;
      opacity: 0 !important;
    }
    .icon {
      display: flex !important;
      align-items: center;
      justify-content: center;
      padding: 8px;
      float: none !important;
      position: relative;
      order: 3;
      flex: 0 0 auto;
      height: auto;
    }
    
    .navbar a.icon {
      display: flex !important;
      align-items: center;
      justify-content: center;
      padding: 8px;
      float: none !important;
      position: relative;
      order: 3;
      flex: 0 0 auto;
      height: auto;
    }
    
    .navbar .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: relative;
      flex-wrap: nowrap;
      gap: 0;
      padding-left: 20px;
      padding-right: 20px;
    }
    
    .navbar-social a {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 8px;
      line-height: 1;
    }
    
    .navbar-social a i,
    .icon i {
      display: block;
      line-height: 1;
    }

    .navbar.responsive {
        position: absolute;
        top: 0;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.9) !important;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
      }
      
      .navbar.responsive.scrolled {
        position: fixed;
        top: 0;
      }
      
      .navbar.responsive .container {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        padding-top: 5mm;
        padding-bottom: 5mm;
      }

      .navbar.responsive .navbar-links {
        display: flex !important;
        flex-direction: column;
        width: 100%;
        order: 2;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        padding: 0;
        transition: max-height 0.4s ease-in-out, opacity 0.4s ease-in-out;
      }
      
      .navbar.responsive.show-menu .navbar-links {
        max-height: 500px;
        opacity: 1;
      }
      
      .navbar.responsive .icon {
        position: absolute;
        right: 0;
        top: 0;
        z-index: 101;
        order: 1;
      }

      .navbar.responsive .navbar-social {
        position: relative;
        display: flex !important;
        opacity: 0;
        visibility: hidden;
        transform: scale(0);
        order: 3;
        width: 100%;
        justify-content: center;
        align-items: center;
        padding: 20px 16px;
        margin-top: 0;
        margin-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        transition: opacity 0.4s ease-in-out 0.2s, visibility 0.4s ease-in-out 0.2s, transform 0.4s ease-in-out 0.2s;
        pointer-events: none;
        gap: 20px;
      }
      
      .navbar.responsive.show-menu .navbar-social {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: scale(1);
        pointer-events: auto !important;
      }
      
      .navbar.responsive.show-menu .navbar-social a {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        color: #fff !important;
        font-size: 24px;
        padding: 8px;
      }
      
      .navbar.responsive.show-menu .navbar-social a:hover {
        color: #ddd !important;
      }
      
      .navbar.responsive .navbar-links a {
        float: none !important;
        display: block !important;
        text-align: left;
        padding: 12px 16px;
        width: 100%;
        box-sizing: border-box;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-right: 16px;
      }
      
      .navbar.responsive .navbar-links a:last-child {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      }
      
      .navbar.responsive .dropdown {
        float: none;
        width: 100%;
      }
      
      .navbar.responsive .dropdown-content {
        position: relative;
        width: 100%;
        box-shadow: none;
        background-color: rgba(255, 255, 255, 0.05);
      }
      
      .navbar.responsive .dropdown .dropbtn {
        display: block;
        width: 100%;
        text-align: left;
        padding: 12px 16px;
      }
      
    /* Fix text overflow */
    #messages p {
      width: 95% !important;
      max-width: 100% !important;
      padding: 0 10px;
      word-wrap: break-word;
    }
    
    #messages p em {
      font-style: italic;
    }
    
    .container {
      max-width: 95vw;
      padding: 0 10px;
    }
    
    #about p {
      width: 95% !important;
      max-width: 100% !important;
      padding: 0 10px;
      word-wrap: break-word;
    }
    
    .hero-logo{
      max-width: 200px !important;
    }

    .overlay {
      width: 100%;
      background: rgba(30, 26, 62, 0.85);
      align-items: center;
    }
    
    .bac-sec-content .container {
      align-items: center;
    }
    
    .bac-flex {
      padding: 20px 20px;
      text-align: left;
      align-items: flex-start;
    }
    
    .hero-logo-container {
      justify-content: flex-start;
    }
    
    .bac-flex h1 {
      font-size: 24px !important;
      padding: 0 10px;
      white-space: normal !important;
      word-wrap: break-word;
      text-transform: uppercase;
    }
    
    .bac-flex .sub p {
      font-size: 12px !important;
      padding: 0 10px;
      word-wrap: break-word;
    }
    
    .course-info .main,
    .info {
      width: 100% !important;
      max-width: 100%;
      padding: 0 10px;
    }
  }

  @media screen and (max-width: 530px) {
    .info{
        width: 100%;
        max-width: 100%;
        padding: 0 10px;
      }

      .loc-box div i{
        font-size: 20px;
        padding-bottom: 10px;
      }

      .loc-box div p{
        font-size: 14px;
      }
      
    /* Fix course info text */
    .course-info {
      width: 100%;
      padding: 0 10px;
    }
    
    .course-info .main {
      width: 100% !important;
      max-width: 100%;
      word-wrap: break-word;
    }
  }

  @media screen and (max-width: 500px) {
    .welc-right h3{
        text-align: center;
    }

    .sub-p{
        text-align: center;
    }
  }

  @media screen and (max-width: 460px) {
    .loc-box{
      display: grid;
      grid-template-columns: repeat(1, 1fr);
      grid-template-rows: repeat(4, 1fr);
      grid-column-gap: 10px;
      grid-row-gap: 10px;
    }
  }

@media screen and (max-width: 450px) {
    #header-content{
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #left-header {
        margin-bottom: 10px;
    }

    .bac-flex .sub p{
        font-size: 12px !important;
        padding: 0 10px;
    }

    .buttons a{
        padding: 10px 15px;
        font-size: 14px;
        margin-right: 0;
        word-wrap: break-word;
        text-align: center;
    }

    .locate-content h3{
      text-align: center;
      font-size: 18px;
      font-weight: bold;
    }
}

@media screen and (max-width: 430px) {
    .course-info .main{
        width: 200px;
      }

      .info{
        width: 200px;
      }

      .counter {
        font-size: 20px;
    }
    
    .card {
        padding: 30px;
    }
}

@media screen and (max-width: 600px) {
    /* Footer mobile font size reductions */
    footer {
        padding: 30px 0;
    }
    
    .footer-column h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }
    
    footer ul li {
        margin-bottom: 8px;
    }
    
    footer ul li a {
        font-size: 13px;
    }
    
    .footer-locate p,
    .footer-column p {
        font-size: 13px;
    }
    
    .footer-bottom p {
        font-size: 12px;
    }
    
    .social-link {
        font-size: 18px;
        width: 32px;
        height: 32px;
    }
    
    .social-link i {
        font-size: 18px;
    }
    
    .footer-column.footer-logo img {
        max-width: 120px !important;
    }
}

@media screen and (max-width: 335px) {
    .card {
        padding: 20px;
    }

    .counter {
        font-size: 15px;
    }
}

/* ============================================
   FINAL OVERRIDE: STAT ICONS MUST BE VISIBLE
   ============================================ */
.stat-item i.stat-icon,
.stat-item i.fas.stat-icon,
.stat-item i.fa.stat-icon,
#stats .stat-item i.stat-icon,
#stats .stat-item i.fas.stat-icon,
#stats .stat-item i.fa.stat-icon,
.stat-item .fas,
.stat-item .fa {
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
  font-size: 70px !important;
  color: #1E1A3E !important;
  margin-bottom: 25px !important;
  width: auto !important;
  height: auto !important;
  line-height: 1 !important;
  position: relative !important;
  z-index: 9999 !important;
  font-family: "Font Awesome 5 Free" !important;
  font-weight: 900 !important;
}

/* Font Awesome ::before pseudo-elements - MUST be visible with DARK color - DO NOT override content */
.stat-item i.stat-icon::before,
.stat-item i.fas.stat-icon::before,
.stat-item i.fa.stat-icon::before,
#stats .stat-item i.stat-icon::before,
#stats .stat-item i.fas.stat-icon::before,
#stats .stat-item i.fa.stat-icon::before,
.stat-item i.fas::before,
.stat-item i.fa::before,
.stat-item .fas::before,
.stat-item .fa::before {
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
  font-family: "Font Awesome 5 Free" !important;
  font-weight: 900 !important;
  color: #1E1A3E !important;
  width: auto !important;
  height: auto !important;
  position: relative !important;
  left: auto !important;
}

/* Force dark color on all stat icons - override any white color */
.stat-item i.stat-icon,
.stat-item i.fas.stat-icon,
.stat-item i.fa.stat-icon,
#stats .stat-item i.stat-icon,
#stats .stat-item i.fas.stat-icon,
#stats .stat-item i.fa.stat-icon,
.stat-item .fas,
.stat-item .fa {
  color: #1E1A3E !important;
}

.stat-item i.stat-icon *,
.stat-item i.fas.stat-icon *,
.stat-item i.fa.stat-icon * {
  color: #1E1A3E !important;
}

/* Additional guarantee for icon visibility - highest priority */
#stats .stat-item i,
#stats .stat-item .fas,
#stats .stat-item .fa,
#stats .stat-item [class*="fa-"] {
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
  font-size: 70px !important;
  color: #1E1A3E !important;
  margin-bottom: 25px !important;
  font-family: "Font Awesome 5 Free", "Font Awesome 5 Pro", "FontAwesome" !important;
  font-weight: 900 !important;
  font-style: normal !important;
  text-rendering: auto !important;
  -webkit-font-smoothing: antialiased !important;
}

#stats .stat-item i::before,
#stats .stat-item .fas::before,
#stats .stat-item .fa::before,
#stats .stat-item [class*="fa-"]::before {
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
  font-family: "Font Awesome 5 Free", "Font Awesome 5 Pro", "FontAwesome" !important;
  font-weight: 900 !important;
  color: #1E1A3E !important;
  /* DO NOT override content - let Font Awesome inject it */
}