*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: rubik, 'sans-serif';
}


/* nav bar */


header {
    width: 100%;
    background-color: white;
    border-bottom: 1px solid #ccc;
    position: sticky;
    top: 0;
    z-index: 999;
  }
  
  @media screen and (min-width:320px) and (max-width:768px){
    header{
      display: none !important;
    }
  
    .mobile-nav{
      display: flex !important;
      justify-content: center !important;
      align-items: center;
      width: 100%;
      position: sticky;
          background-color: white;
          top: 0;
          z-index: 9;
    }
  
    .mob-section{
      display: flex;
      justify-content: space-between;
      padding: 10px 10px;
      width: 100%;
    }
  }
  
  .mobile-nav{
    display: none;
  }
  
    
    .header-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 16px 20px;
    }
    
  
    .logo img {
      height: 40px;
    }
    
    .search-bar {
      display: flex;
      align-items: center;
      flex: 1;
      margin: 0 20px;
    }
    
    .search-bar input {
      width: 100%;
      padding: 8px 12px;
      border: 1px solid #ccc;
      border-radius: 4px 0 0 4px;
      outline: none;
    }
    
    .search-bar button {
      background-color: #007bff;
      color: white;
      border: none;
      padding: 8px 12px;
      border-radius: 0 4px 4px 0;
      cursor: pointer;
    }
    
    .navigation ul {
      list-style: none;
      display: flex;
      gap: 20px;
    }
    
    .navigation ul li a {
      text-decoration: none;
      color: #333;
      font-size: 14px;
    }
    
    .header-buttons {
      display: flex;
      gap: 10px;
    }
  
    .header-mob-buttons {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
  
    .header-mob-link a{
      text-decoration: none;
      color: #061a40;
    }
  
    .header-mob-link{
      margin-bottom: 1rem;
      text-align: left;
      display: flex;
      flex-direction: column;
      padding-left: 10px;
      gap: 10px;
    }
    
    .header-buttons .free-lms {
      background-color: #f39c12;
      color: white;
      padding: 8px 10px;
      border-radius: 4px;
      text-decoration: none;
      font-size: 14px;
    }
  
    .header-buttons .franchaise{
      background-color: dodgerblue;
      color: white;
      padding: 8px 10px;
      border-radius: 4px;
      text-decoration: none;
      font-size: 14px;
    }
    
    .header-buttons .login-btn, .header-buttons .signup-btn {
      padding: 8px 10px;
      border-radius: 4px;
      font-size: 14px;
      text-decoration: none;
      color: #007bff;
      border: 1px solid #007bff;
    }
    
    .header-buttons .signup-btn {
      background-color: #007bff;
      color: white;
    }
  
    .header-mob-buttons .free-lms {
      background-color: #f39c12;
      color: white;
      padding: 8px 10px;
      border-radius: 4px;
      text-decoration: none;
      font-size: 14px;
      text-align: center;
    }
  
    .header-mob-buttons .franchaise{
      background-color: dodgerblue;
      color: white;
      padding: 8px 10px;
      border-radius: 4px;
      text-decoration: none;
      font-size: 14px;
      text-align: center;
    }
  
    .header-mob-buttons .login-btn, .header-mob-buttons .signup-btn {
      padding: 8px 10px;
      border-radius: 4px;
      font-size: 14px;
      text-decoration: none;
      color: #007bff;
      border: 1px solid #007bff;
      text-align: center;
    }
  
    .header-mob-buttons .signup-btn {
      background-color: #007bff;
      color: white;
      text-align: center;
    }
    
    .icon-menu {
      font-size: 18px;
      cursor: pointer;
    }
    
    .icon-menu i {
      color: #333;
    }
  
      
  .dropend .dropdown-toggle {
    color: salmon;
    /* margin-left: 1em; */
  }
  .dropdown-item:hover {
    background-color: lightsalmon;
    color: #fff;
  }
  .dropdown .dropdown-menu {
    display: none;
  }
  .dropdown:hover > .dropdown-menu,
  .dropend:hover > .dropdown-menu {
    display: block;
    margin-top: 0.125em;
    margin-left: 0.125em;
  }
  @media screen and (min-width: 769px) {
    .dropend:hover > .dropdown-menu {
      position: absolute;
      top: 0;
      left: 100%;
    }
    .dropend .dropdown-toggle {
      margin-left: 0.5em;
    }
  }
  
  
  
   
  
  nav ul {
      list-style: none;
      display: flex;
      margin: 0;
      padding: 0;
  }
  
  nav ul li {
      margin: 0 1rem;
  }
  
  nav ul li a {
      color: #fff;
      text-decoration: none;
  }
  
  nav ul li a.btn {
      background: #ff6600;
      padding: 0.5rem 1rem;
      border-radius: 5px;
      color: #fff;
  }

  /* header end */

  .title{
    font-size: 26px;
  }

  .title h2{
    font-size: 24px !important;
  }


  /* footer start */
  footer {
    background-color:#007ab3;
    color: white;
    padding: 40px 20px;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
  }
  
  .footer-section {
    flex: 1 1 200px;
    margin: 15px;
  }
  
  .footer-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
  }
  
  .footer-section ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-section ul li {
    margin: 8px 0;
    font-size: 14px;
  }
  
  .footer-section ul li a {
    text-decoration: none;
    color: white;
  }
  
  .footer-bottom {
    text-align: center;
    margin-top: 20px;
    border-top: 1px solid whitesmoke;
    padding-top: 10px;
    width: 100%;
  }
  
  .social-icons a {
    color: white;
    margin: 0 10px;
    font-size: 20px;
    text-decoration: none;
  }
  
  .social-icons a:hover {
    color: #f39c12;
  }
