@import url("https://fonts.googleapis.com/css?family=Montserrat:300,400,500,600,700,800,900");

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none; 
    font-family: "Montserrat", sans-serif;
    font-size: 14px; 
    line-height: 3.6;
    font-weight: 450;
    max-width: 100%;
  }
  nav {
    min-height: 110px;
    background-color: #ffffff;
    width: 100%;
    padding-bottom: 5px;
    box-shadow: -1px 0 20px #516597;
    display: flex;
    justify-content: center; /* Center content horizontally */
    align-items: center; /* Center content vertically */
    position: relative; /* Ensure flexibility for child positioning */
  }
  .navbar-brand {
    position: absolute;
    left: 10px; /* Adjust for proper placement */
    padding: 10px;
  }
  
  .navbar-brand img {
    width: 120px; /* Keep the logo size consistent */
  }
  
  nav ul {
    display: flex; /* Ensure list items align horizontally */
    justify-content: center; /* Center items in the nav bar */
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  nav ul li {
    margin: 0 15px; /* Add spacing between links */
  }
  
  nav ul li a {
    text-transform: none; /* Ensure text appears as written (lowercase) */
    text-decoration: none; /* Remove underline */
    font-weight: 500;
    color: #000000;
    font-size: 18px;
    padding: 7px 13px;
    border-radius: 4px;
    transition: background 0.3s ease, color 0.3s ease;
  }
  
  nav ul li a:hover {
    background: hsla(45, 17%, 44%, 0.78);
    color: #ffffff;
  }
  
  nav ul li a.active {
    background: hsla(45, 17%, 44%, 0.78);
    color: #ffffff;
  }

  .checkbtn{
    font-size: 30px;
    float: right;
    line-height: 80px;
    margin-right: 40px;
    cursor: pointer;
    color: #c40303;
    display: none;
  }
  #check{
    display: none;
  }



  /*MAX WIDTH = 1200 px*/

  @media (max-width: 1200px){
    .logo{
      display: none;
     }
   }



  /*MAX WIDTH = 952 px*/

  @media (max-width: 952px){
    label.logo{
      font-size: 20px;
      padding-left: 10px;
    }
    nav ul li a{
      font-size: 16px;
    }
  }





   /*MAX WIDTH = 892 px*/
  @media (max-width: 896px) {
  nav .logo-item {
    display: block;
    left: 10px;
    top: 10px;
  }
  nav .logo-item img {
    width: 80px; /* Smaller size for small screens */
    height: auto; /* Maintain aspect ratio */
  }
   .checkbtn{
    display: block;
    color: black;
    margin-left: 350px;
    size: large;
   }
   nav ul{
    display: none;
    flex-direction: column;
    position: absolute;
    width: 100%;
    height: 100vh;
    background: #d6d8db;
    top: 60px;
    left: -100%;
    z-index: 999;
    text-align: center;
    transition: all .10s;
    cursor: pointer;
   }
   nav ul li{
    display: block;
    text-align: center;
    padding: 10px 0;
   }

   nav ul li a{
    font-size: 20px;
   }
   nav ul.show {
    display: flex;
   }
   .checkbtn {
    display: block; /* Show the hamburger menu button */
    cursor: pointer;
    font-size: 24px;
    color: black;
    text-align: center;
    justify-content: center;
  }

   nav li {
    text-align: center;
    padding: 10px 0;
   }
   nav ul.show{
    display: flex;
   }


  a:hover,a.active{
    background: none;
    color: #c40303;
   }

   #check:checked ~ ul{
    left: 0;
   }

  }

p{
  line-height: 2.5;
  font-weight: 400;
}

h1{
    font-size: 30px;
    font-weight: 600;
}

/* General Carousel Item Style */
.carousel-item {
  color: rgb(17, 13, 13); /* Text color, though it's not used with no text */
  position: relative;
  background-position: center;
  background-size: cover;
  transition: opacity 2.5 ease-in-out; /* Fade effect duration */
}

.carousel-item img {
  opacity: 1;
  background-size: cover;
  width: 100%;
  height: 70vh; /* Set height relative to viewport height */
  object-fit: cover; /* Ensure the image covers the area without distortion */
  background-position: center;
}

/* Carousel Control Styling (Prev & Next) */
.carousel-control-prev,
.carousel-control-next {
  width: 3em;
  height: 3em;
  position: absolute;
  top: 50%;
  transform: translateY(-50%); /* Center the controls vertically */
  background-color: rgba(0, 0, 0, 0.5); /* Slightly dark background */
  border-radius: 50%;
  z-index: 5; /* Ensure controls are above carousel items */
}

/* Control Icons */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: white; /* White color for icons */
  border-radius: 50%;
}

/* Indicators Style (Dots) */
.carousel-indicators button {
  background-color: rgba(0, 0, 0, 0.5); /* Dark inactive dots */
}

.carousel-indicators .active {
  background-color: #ffffff; /* Light color for active dot */
}

/* Fade Effect for Carousel */
.carousel-fade .carousel-item {
  opacity: 0; /* Start as invisible */
  transition: opacity 2.5s ease-in-out; /* Smooth fade-in/out */
}

.carousel-fade .carousel-item.active {
  opacity: 1; /* Fully visible */
}

.carousel-fade .carousel-item-next,
.carousel-fade .carousel-item-prev {
  opacity: 0; /* Keep adjacent slides hidden during animation */
  transition: opacity 2.5s ease-in-out; /* Same transition for prev/next items */
}

.course {
  width: 80%;
  margin: auto;
  text-align: center;
  padding-top: 100px;
}

.section-title {
  font-size: 20px;
  font-weight: 600;
  color: #333;
}

.course-container {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  background-color: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.course-col {
  width: 30%;
  text-align: center;
}

.course-col h3 {
  font-size: 24px;
  font-weight: 500;
  color: black;
  margin: 15px 0;
}

.course-col p {
  font-size: 16px;
  color: black;
  line-height: 1.5;
  font-weight: 100;
}



/*MAX WIDTH = 768 px*/

@media (max-width: 768px) {
  .course-container {
    flex-direction: column;
    align-items: center;
    padding: 20px;
  }

  .course-col {
    width: 80%;
    margin-bottom: 20px;
  }
}
.icon-container {
  font-size: 50px;
  color: #333;
  margin-bottom: 15px;
}
.numbers-container {
  flex-direction: column;
}

.number-item {
  width: 80%;
  margin: 15px auto;
}

.fas {
  color: #007bff;
}
 .row1 {
    flex-direction: column;
    align-items: center;
  }

  .course-col {
    width: 80%;
    margin-bottom: 20px;
  }
  .list{
    width: 50%;
    margin-bottom: 30px;
  }
  table{
      width: 100%;
      margin-bottom: 30px;
    }
.card1{
  width: 50%;
  float: left;
  margin: auto;
  justify-content: center;
}

.card{
  width: 50%;
  float: left;
  margin: auto;
  justify-content: center;
  border-color: #990000;
}
.card1{
    width: 100%;
    margin-bottom: 30px;
  }
  .card{
    width: 100%;
    margin-bottom: 30px;
  }

.table_item table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  border: none;
  line-height: 24px; }
.table_item table th, td {
  text-align: left;
  padding: 10px; }
.table_item table tr:nth-child(even) {
  background-color: #ecf0f1 ; }
.table_item .sub-heading {
	text-transform: uppercase;
	color: #990000; }
.sub-heading {
   font-weight: 400;
   color: #990000;
   text-transform: uppercase;
   text-align: center;
 }
 .image{
  transition: transform .2s; /* Animation */
  -webkit-filter: blur(px); /* Safari 6.0 - 9.0 */
  filter: blur(px);
 }
image{
  box-shadow: #2b2c2c 1px;
}
 .image:hover{
  transform: scale(1.09); 
}

.section-padding-100-0 {
  padding-top: 100px;
  padding-bottom: 0;
}


.footer {
  background-color: #080808ce;
  padding: 50px 1px;
  width: 100%;
  margin-top: 40px;
  display: flex;
  color: #f0eaea;
}

ul {
  list-style: none;
}

.footer-col {
  width: 25%;
  padding: 0px 75px;
}

.footer-col p {
  font-size: 15px;
}

.footer-col h6{
  color: #ffffff;
  text-transform: capitalize;
  margin-bottom: 35px;
  font-weight: 500;
  position: relative;
}

.footer-col ul li a {
  font-size: 14px;
  text-decoration: none;
  color: #ffffff;
}

.footer-col ul li a:hover {
  color: #e5dfeb;
  background-color: #c40303;
  border-radius: 5px;
  padding: 5px;
  transition: .5s;
  height: 20px;
}

.footer-col-4 {
  width: 25%;
  padding: 0px 75px;
}

.footer-col-4 p {
  font-size: 15px;
}

.footer-col-4 h6{
  color: #ffffff;
  text-transform: capitalize;
  margin-bottom: 35px;
  font-weight: 500;
  position: relative;
}

.footer-col-4 ul li {
  font-size: 14px;
  text-decoration: none;
  color: #ffffff;
  display: flex;
}

.footer-col ul li a:hover {
  color: #e5dfeb;
  background-color: #c40303;
  border-radius: 5px;
  padding: 5px;
  transition: .5s;
  height: 20px;
}

.footer-social-icons {
  margin-left: 50px;
}

.footer nav ul li a {
  color: #000000;
  font-size: 17px;
  padding: 7px 13px;
  border-radius: 4px;
  text-transform: uppercase;
}




/*MAX WIDTH = 700 px*/

@media(max-width: 700px){
  .row1{
      flex-direction: column;
      border-color: #990000;
  }
}

.course-col{
    flex-basis: 31%;
    background: #fcfbf9;
    border-radius: 5px;
    margin-bottom: 5%;
    padding: 100px 24px;
    box-sizing: border-box;
    box-shadow: -1px 0 10px #c40303;
    transition: 3s;

}
.course-col2{
    flex-basis: 31%;
    border-radius: 5px;
    margin-bottom: 5%;
    background: #fff;
    border: 1px solid #b88c08c7;
    box-shadow: -1px 0 10px #c40303;
    padding: 100px 24px;
    box-sizing: border-box;
    transition: 3s;
    margin: 10px;
}

.course-col3{
    flex-basis: 31%;
    background: #fff;
    border-radius: 5px;
    margin-bottom: 5%;
    box-shadow: #516597;
    padding: 100px 24px;
    box-sizing: border-box;
    transition: 3s;
    margin: 10px;
}


.sub-heading {
    font-weight: 400;
    color: #000000;
    text-transform: uppercase; 
  }

.download-btn {
      display: inline-block;
       font-weight: 300;
      -webkit-transition: all 500ms;
       transition: all 500ms; }
     .download-btn a {
         color: #fd0b0bc7; }
     .download-btn a:hover {
         color: #990000;
         text-decoration: underline; }   
     .row{
          flex-direction: column;
          }
      
      .row2{
              flex-direction: column;
          }
      .container{
        max-width: 100%;
        margin: auto;
      }
      #intro{
          margin: 5px;
      }
      .values{
          background-color: #b0a247;
          background-image: -webkit-image-set();
          margin: 10px;
      }
      
      .value{
          width: 50%;
          float: left;
      }
      .belief{
          width: 50%;
          float: left;
          margin-bottom: 25px;
      }
        .footer-col {
          width: 85%;
          margin-bottom: 30px;
        }
      .numbers-section {
        background-color: #f4f4f4;
        padding: 50px 0;
        text-align: center;
      }
      
      .numbers-container {
        display: flex;
        justify-content: space-around;
        align-items: center;
        flex-wrap: wrap;
      }
      
      .number-item {
        margin: 20px;
        padding: 30px;
        background-color: #ffffff;
        border-radius: 10px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        text-align: center;
        width: 200px;
        transition: transform 0.3s ease-in-out;
      }
      
      .number-item:hover {
        transform: translateY(-10px);
      }
      
      .number {
        font-size: 40px;
        font-weight: 700;
        color: #c40303;
        display: inline-block;
        margin-bottom: 10px;
        transition: transform 1s ease-in-out;
      }
      
      .plus {
        font-size: 30px;
        font-weight: 400;
        color: #333;
      }
      
      p {
        font-size: 16px;
        color: #777;
        font-weight: 500;
      }
         
   


/*MAX WIDTH = 574 px*/

@media(max-width: 574px){
  .cores{
    float: left;
    width: 100%;
    margin-bottom: 30px;
  }
}

.list{
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 30px;

}
.single-course-area{
  padding: 16px;
}

.single-course-area .course-icon {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 91px;
  flex: 0 0 91px;
  min-width: 91px;
  width: 91px;
  background: #87cefa;
  background: -webkit-linear-gradient(to right, #87cefa, #990000);
  background: linear-gradient(to right, #87cefa, #990000);
  width: 91px;
  height: 91px;
  line-height: 95px;
  font-size: 40px;
  color: #ffffff;
  text-align: center;
  border-radius: 50%;
  margin-right: 30px;
 }

.single-course-area .course-content h4{
  font-weight: 500;
  color: #fae209;
  margin-bottom: 15px;
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms; }
.single-course-area .course-content li {
  list-style: inherit !important; }
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .single-course-area .course-content h4 {
      font-size: 18px; } }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .single-course-area .course-content h4 {
      font-size: 16px; } }
  @media only screen and (max-width: 767px) {
    .single-course-area .course-content h4 {
      font-size: 18px; } }
.single-course-area .course-content p {
  margin-bottom: 0; }
.single-course-area:hover .course-content h4, .single-course-area:focus .course-content h4 {
  color: #211d30; }


  


/*MAX WIDTH = 400 px*/

  @media (max-width: 400px){
    table .uploads{
      width: 100%;
    }
  }
 
h3{
    text-align: center;
    font-weight: 600;
    margin: 10px 0;
    margin-top: -60px;
}
.course-col:hover{
    box-shadow: 0 0 20px 0px rgba(0,0,0,0.2);
    background: rgba(255, 255, 255, 0.911);
}

.course-col2:hover{
  box-shadow: 20 0 20px 0px rgba(0,0,0,0.2);
  background: rgba(255, 255, 255, 0.737);
}
  table{
   
    margin: auto;
    table-layout: fixed;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 100px;
  }
  table, th, td{
      border:0.2px solid black;
      margin:100px 10px;
  }

