

.course-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.course-card {
  width: calc(33.33% - 20px);
  padding: 20px;
  background-color: #ffffff;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
 
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.course-image {
  width: 100%;
  
  background-color: #ddd;
 
  margin: 0 auto 10px;
}

.course-title {
  font-size: 18px;
  font-weight: bold;
  color: #333333;
  text-align: center;
  margin-bottom: 10px;
}

.course-description {
  font-size: 14px;
  color: #777777;
  text-align: center;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .course-card {
    width: calc(50% - 20px);
  }
}

@media (max-width: 480px) {
  .course-card {
    width: 100%;
  }
}




.testimonial-container {
  display: inline-block;
  max-width: 400px;
  
  margin: 30px 30px 30px 30px;
  padding: 20px;
  background-color: #ffffff;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  text-align: center;
  align-content: center;
}

.testimonial-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}

.testimonial-content {
  font-size: 18px;
  line-height: 1.5;
  color: #333333;
  margin-bottom: 20px;
}

.testimonial-author {
  font-size: 16px;
  font-style: bold;
  color: #4d0303;
}
* {box-sizing:border-box}

/* Slideshow container */



/**/
.notice{
  width: 100%;
 
  border-bottom: solid;
  border-color: var(--primary-color);
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Roboto', sans-serif;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color:rgb(255, 255, 255);
}



.container-body{
  height: 100%;
  width: 86%;
  margin: 0 auto;
  padding: 0;
  border-top: 5px solid var(--primary-color);
  background-color: #FFFFFF;
  border-bottom: none;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

:root{
    --primary-color:rgb(158, 20, 43);
    --simple: #f5f6fa;
    --lines: #e84118;

    /* Delete Later  */
    --primary:  #933ded;
    --dark: #232323;
    --pure: #1B1464;
    --smoke: #e84118;
    --dark-grey: rgb(158, 20, 43);
}

.active{
  color: var(--primary-color);
}

/* Header Section  */
header .head{
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
  padding-top: 20px;
}

header .head .logo img{
    width: 80%;
    cursor: pointer;
}
header .head .contact-box{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
header .head .contact-box p{
    font-size: 17px;
    padding-bottom: 4px;
    text-align: center;
}
header .head .contact-box img{
    width: 30px;
    padding: 0px 4px;
}



nav {
    background-color: #333;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
  }
  
  .menu-icon {
    font-size: 24px;
    cursor: pointer;
  }
  
  .menu {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
  }
  
  .menu li {
    margin: 0 15px;
  }
  
  .menu a {
    text-decoration: none;
    color: white;
    transition: color 0.3s;
  }
  
  .menu a:hover {
    color: #f44336;
  }
  
  /* Responsive Styles */
  @media screen and (max-width: 768px) {
    .container-body{
      width: 100%;
      margin: 0 auto;
      padding: 0;
      border-top: 5px solid var(--primary-color);
      background-color: #FFFFFF;
      border-bottom: none;
      box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    }
    .menu {
      display: none;
      flex-direction: column;
      background-color: #222;
      position: absolute;
      top: 60px;
      left: 0;
      width: 100%;
    }
  
    .menu.active {
      display: flex;
    }
  
    .menu li {
      margin: 10px 0;
      text-align: center;
    }
  
    #menu-toggle:checked ~ .menu {
      display: flex;
    }
  }
/* Navbar Section  */

.navbar{
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: start;
    width: 100%;
    padding: 19px 9px;
    background-color: var(--primary-color);
    position: relative;
  }
  .navbar .menu-title{
    display: none;
  }
  .navbar .nav-links{
    display: inline;
    float: right;
    font-size: 15px;
  }
  .navbar .nav-links a {
    padding: 10px 12px;
    text-decoration: none;
    color: white;
    text-align: start;
    font-weight: 500;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  }
  /* Hover effects */
  .navbar .nav-links a:hover{
    background-color: rgba(0, 0, 0, 0.3);
  }
   
  /* responsive navbar toggle button */
  .navbar #nav-check, .navbar .nav-btn{
    display: none;
  }
   
  @media (max-width:700px) {
    .navbar .nav-btn{
      display: inline-block;
      position: absolute;
      top: 0px;
      right: 0px;
    }

    .navbar .menu-title{
      display: unset;
    }
    .navbar .nav-btn label {
      display: inline-block;
      width: 46px;
      height: 40px;
      padding: 10px;
    }
    .navbar .nav-btn label span {
      display: block;
      height: 10px;
      width: 25px;
      border-top: 3px solid #eee;
    }
    .navbar .nav-btn label:hover, .navbar #nav-check:checked ~ .nav-btn label {
      background-color: var(--primary-color);
      transition: all 0.5s ease;
    }
    .navbar .nav-links{
      position: absolute;
      display: block;
      text-align: center;
      width: 100%;
      background-color: var(--primary-color);
      transition: all 0.3s ease-in;
      overflow-y: hidden;
      z-index: 1;
      top: 40px;
      
      right: 0px;
    }
    .navbar .nav-links a {
      display: block;
    }
   
    /* when nav toggle button not checked */
    .navbar #nav-check:not(:checked) ~ .nav-links {
      height: 0px;
    }
   
    /* when nav toggle button is checked */
    .navbar #nav-check:checked ~ .nav-links {
      overflow-y: auto;
    }
    .navbar .nav-links .loginBtn {
      padding: 10px 40px ;
      margin: 20px;
      font-size:  18px;
      font-weight: bold;
      color: rgb(9, 14, 90);
    }
    /* Responsive dropdown code */
    .navbar .nav-links .dropdown, .navbar .nav-links .dropdown2 {
      float: none;
      width: 100%;
    }
    .navbar .nav-links .drop-content, .navbar .nav-links .drop-content2 {
      position: relative;
      background-color: rgb(220, 220, 250);
      top: 0px;
      left: 0px;
    }
    /* Text color */
    .navbar .nav-links .drop-content a {
      color: var(--primary-color);
    }  
    .course-card {
      width: 100%;
    }
   
  }
  /* Footer Section  */

.footer{
  border-top: 3px solid var(--primary-color);
 
  text-align: center;

  position: relative;
  width: 100%;
  padding-bottom: 15px;
}


   
  @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');
  @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;700;800&display=swap');

  
